diff --git a/doc/haskell-users-guide.xml b/doc/haskell-users-guide.xml
index c3d4ae8fb51a..2f3b1eabb11d 100644
--- a/doc/haskell-users-guide.xml
+++ b/doc/haskell-users-guide.xml
@@ -119,7 +119,7 @@ $ nix-env -f "<nixpkgs>" -qaP -A haskell.packages.ghc763
The name haskellPackages is really just a synonym
- for haskell.packages.ghc7101, because we prefer
+ for haskell.packages.ghc7102, because we prefer
that package set internally and recommend it to our users as their
default choice, but ultimately you are free to compile your Haskell
packages with any GHC version you please. The following command
@@ -134,7 +134,7 @@ haskell.compiler.ghc722 ghc-7.2.2
haskell.compiler.ghc742 ghc-7.4.2
haskell.compiler.ghc763 ghc-7.6.3
haskell.compiler.ghc784 ghc-7.8.4
-haskell.compiler.ghc7101 ghc-7.10.1
+haskell.compiler.ghc7102 ghc-7.10.2
haskell.compiler.ghcHEAD ghc-7.11.20150402
haskell.compiler.ghcNokinds ghc-nokinds-7.11.20150704
haskell.compiler.ghcjs ghcjs-0.1.0
@@ -167,7 +167,7 @@ $ nix-env -f "<nixpkgs>" -iA haskellPackages.ghc haskellPackages
Instead of the default package set
haskellPackages, you can also use the more
- precise name haskell.compiler.ghc7101, which
+ precise name haskell.compiler.ghc7102, which
has the advantage that it refers to the same GHC version
regardless of what Nixpkgs considers "default" at any
given time.
@@ -254,7 +254,7 @@ $ nix-shell -p haskell.compiler.ghc784 --command "cabal configure"
$ nix-shell -p "haskellPackages.ghcWithPackages (pkgs: [pkgs.mtl])"
[nix-shell:~]$ ghc-pkg list mtl
-/nix/store/zy79...-ghc-7.10.1/lib/ghc-7.10.1/package.conf.d:
+/nix/store/zy79...-ghc-7.10.2/lib/ghc-7.10.2/package.conf.d:
mtl-2.2.1
@@ -266,7 +266,7 @@ $ nix-shell -p "haskellPackages.ghcWithPackages (pkgs: [pkgs.mtl])"
{
packageOverrides = super: let self = super.pkgs; in
{
- myHaskellEnv = self.haskell.packages.ghc7101.ghcWithPackages
+ myHaskellEnv = self.haskell.packages.ghc7102.ghcWithPackages
(haskellPackages: with haskellPackages; [
# libraries
arrows async cgi criterion
@@ -281,7 +281,7 @@ $ nix-shell -p "haskellPackages.ghcWithPackages (pkgs: [pkgs.mtl])"
nix-env -f "<nixpkgs>" -iA myHaskellEnv.
If you'd like to switch that development environment to a
different version of GHC, just replace the
- ghc7101 bit in the previous definition with the
+ ghc7102 bit in the previous definition with the
appropriate name. Of course, it's also possible to define any
number of these development environments! (You can't install two
of them into the same profile at the same time, though, because
@@ -296,11 +296,11 @@ $ nix-shell -p "haskellPackages.ghcWithPackages (pkgs: [pkgs.mtl])"
$ cat $(type -p ghc)
#! /nix/store/xlxj...-bash-4.3-p33/bin/bash -e
-export NIX_GHC=/nix/store/19sm...-ghc-7.10.1/bin/ghc
-export NIX_GHCPKG=/nix/store/19sm...-ghc-7.10.1/bin/ghc-pkg
-export NIX_GHC_DOCDIR=/nix/store/19sm...-ghc-7.10.1/share/doc/ghc/html
-export NIX_GHC_LIBDIR=/nix/store/19sm...-ghc-7.10.1/lib/ghc-7.10.1
-exec /nix/store/j50p...-ghc-7.10.1/bin/ghc "-B$NIX_GHC_LIBDIR" "$@"
+export NIX_GHC=/nix/store/19sm...-ghc-7.10.2/bin/ghc
+export NIX_GHCPKG=/nix/store/19sm...-ghc-7.10.2/bin/ghc-pkg
+export NIX_GHC_DOCDIR=/nix/store/19sm...-ghc-7.10.2/share/doc/ghc/html
+export NIX_GHC_LIBDIR=/nix/store/19sm...-ghc-7.10.2/lib/ghc-7.10.2
+exec /nix/store/j50p...-ghc-7.10.2/bin/ghc "-B$NIX_GHC_LIBDIR" "$@"
The variables $NIX_GHC,
@@ -354,6 +354,90 @@ if [ -e ~/.nix-profile/bin/ghc ]; then
fi
+
+ How to install a compiler with libraries, hoogle and documentation indexes
+
+ If you plan to use your environment for interactive programming,
+ not just compiling random Haskell code, you might want to
+ replace ghcWithPackages in all the listings
+ above with ghcWithHoogle.
+
+
+ This environment generator not only produces an environment with
+ GHC and all the specified libraries, but also generates a
+ hoogle and haddock indexes
+ for all the packages, and provides a wrapper script around
+ hoogle binary that uses all those things. A
+ precise name for this thing would be
+ "ghcWithPackagesAndHoogleAndDocumentationIndexes",
+ which is, regrettably, too long and scary.
+
+
+ For example, installing the following environment
+
+
+{
+ packageOverrides = super: let self = super.pkgs; in
+ {
+ myHaskellEnv = self.haskellPackages.ghcWithHoogle
+ (haskellPackages: with haskellPackages; [
+ # libraries
+ arrows async cgi criterion
+ # tools
+ cabal-install haskintex
+ ]);
+ };
+}
+
+
+ allows one to browse module documentation index not
+ too dissimilar to this for all the specified packages and
+ their dependencies by directing a browser of choice to
+ ~/.nix-profiles/share/doc/hoogle/index.html
+ (or
+ /run/current-system/sw/share/doc/hoogle/index.html
+ in case you put it in
+ environment.systemPackages in NixOS).
+
+
+ After you've marveled enough at that try adding the following to
+ your ~/.ghc/ghci.conf
+
+
+:def hoogle \s -> return $ ":! hoogle search -cl --count=15 \"" ++ s ++ "\""
+:def doc \s -> return $ ":! hoogle search -cl --info \"" ++ s ++ "\""
+
+
+ and test it by typing into ghci:
+
+
+:hoogle a -> a
+:doc a -> a
+
+
+ Be sure to note the links to haddock files in
+ the output. With any modern and properly configured terminal
+ emulator you can just click those links to navigate there.
+
+
+ Finally, you can run
+
+
+hoogle server -p 8080
+
+
+ and navigate to for
+ your own local Hoogle.
+ Note, however, that Firefox and possibly other browsers disallow
+ navigation from http: to
+ file: URIs for security reasons, which might
+ be quite an inconvenience. See this
+ page for workarounds.
+
+
How to create ad hoc environments for
nix-shell
@@ -371,7 +455,7 @@ nix-shell -p "haskellPackages.ghcWithPackages (pkgs: with pkgs; [mtl pandoc
shell.nix that looks like this:
-{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
+{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7102" }:
let
inherit (nixpkgs) pkgs;
ghc = pkgs.haskell.packages.${compiler}.ghcWithPackages (ps: with ps; [
@@ -451,7 +535,7 @@ $ cabal2nix . >foo.nix
default.nix:
-{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
+{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7102" }:
nixpkgs.pkgs.haskell.packages.${compiler}.callPackage ./foo.nix { }
@@ -459,7 +543,7 @@ nixpkgs.pkgs.haskell.packages.${compiler}.callPackage ./foo.nix { }
shell.nix:
-{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
+{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7102" }:
(import ./default.nix { inherit nixpkgs compiler; }).env
diff --git a/doc/stdenv.xml b/doc/stdenv.xml
index 1556ffd057f9..7ba24db2e050 100644
--- a/doc/stdenv.xml
+++ b/doc/stdenv.xml
@@ -899,6 +899,34 @@ following:
phase.
+
+ separateDebugInfo
+ If set to true, the standard
+ environment will enable debug information in C/C++ builds. After
+ installation, the debug information will be separated from the
+ executables and stored in the output named
+ debug. (This output is enabled automatically;
+ you don’t need to set the outputs attribute
+ explicitly.) To be precise, the debug information is stored in
+ debug/lib/debug/.build-id/XX/YYYY…,
+ where XXYYYY… is the build
+ ID of the binary — a SHA-1 hash of the contents of
+ the binary. Debuggers like GDB use the build ID to look up the
+ separated debug information.
+
+ For example, with GDB, you can add
+
+
+set debug-file-directory ~/.nix-profile/lib/debug
+
+
+ to ~/.gdbinit. GDB will then be able to find
+ debug information installed via nix-env
+ -i.
+
+
+
+
diff --git a/lib/attrsets.nix b/lib/attrsets.nix
index 2300ee9c000b..5aad76e75e4d 100644
--- a/lib/attrsets.nix
+++ b/lib/attrsets.nix
@@ -78,6 +78,26 @@ rec {
listToAttrs (concatMap (name: let v = set.${name}; in if pred name v then [(nameValuePair name v)] else []) (attrNames set));
+ /* Filter an attribute set recursivelly by removing all attributes for
+ which the given predicate return false.
+
+ Example:
+ filterAttrsRecursive (n: v: v != null) { foo = { bar = null; }; }
+ => { foo = {}; }
+ */
+ filterAttrsRecursive = pred: set:
+ listToAttrs (
+ concatMap (name:
+ let v = set.${name}; in
+ if pred name v then [
+ (nameValuePair name (
+ if isAttrs v then filterAttrsRecursive pred v
+ else v
+ ))
+ ] else []
+ ) (attrNames set)
+ );
+
/* foldAttrs: apply fold functions to values grouped by key. Eg accumulate values as list:
foldAttrs (n: a: [n] ++ a) [] [{ a = 2; } { a = 3; }]
=> { a = [ 2 3 ]; }
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index b43b8385f550..5e9ab78a9559 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -7,6 +7,7 @@
so it's easy to ping a package @maintainer.
*/
+ a1russell = "Adam Russell ";
abaldeau = "Andreas Baldeau ";
abbradar = "Nikolay Amiantov ";
adev = "Adrien Devresse ";
@@ -69,6 +70,7 @@
cstrahan = "Charles Strahan ";
cwoac = "Oliver Matthews ";
DamienCassou = "Damien Cassou ";
+ davidak = "David Kleuker ";
davidrusu = "David Rusu ";
dbohdan = "Danyil Bohdan ";
DerGuteMoritz = "Moritz Heidkamp ";
@@ -79,6 +81,7 @@
dfoxfranke = "Daniel Fox Franke ";
dmalikov = "Dmitry Malikov ";
doublec = "Chris Double ";
+ ebzzry = "Rommel Martinez ";
ederoyd46 = "Matthew Brown ";
eduarrrd = "Eduard Bachmakov ";
edwtjo = "Edward Tjörnhammar ";
@@ -88,6 +91,7 @@
emery = "Emery Hemingway ";
epitrochoid = "Mabry Cervin ";
ericbmerritt = "Eric Merritt ";
+ erikryb = "Erik Rybakken ";
ertes = "Ertugrul Söylemez ";
exlevan = "Alexey Levan ";
falsifian = "James Cook ";
@@ -95,6 +99,7 @@
fluffynukeit = "Daniel Austin ";
forkk = "Andrew Okin ";
fpletz = "Franz Pletz ";
+ fridh = "Frederik Rietdijk ";
fro_ozen = "fro_ozen ";
ftrvxmtrx = "Siarhei Zirukin ";
funfunctor = "Edward O'Callaghan ";
@@ -104,6 +109,7 @@
garrison = "Jim Garrison ";
gavin = "Gavin Rogers ";
gebner = "Gabriel Ebner ";
+ gfxmonk = "Tim Cuthbertson ";
giogadi = "Luis G. Torres ";
globin = "Robin Gloster ";
goibhniu = "Cillian de Róiste ";
@@ -137,6 +143,7 @@
jwilberding = "Jordan Wilberding ";
jzellner = "Jeff Zellner ";
kamilchm = "Kamil Chmielewski ";
+ khumba = "Bryan Gardiner ";
kkallio = "Karn Kallio ";
koral = "Koral ";
kovirobi = "Kovacsics Robert ";
@@ -229,6 +236,7 @@
rszibele = "Richard Szibele ";
rushmorem = "Rushmore Mushambi ";
rycee = "Robert Helgesson ";
+ samuelrivas = "Samuel Rivas ";
sander = "Sander van der Burg ";
schmitthenner = "Fabian Schmitthenner ";
schristo = "Scott Christopher ";
diff --git a/lib/types.nix b/lib/types.nix
index a7f9bf1946e6..7276f9af9fee 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -6,7 +6,7 @@ with import ./attrsets.nix;
with import ./options.nix;
with import ./trivial.nix;
with import ./strings.nix;
-with {inherit (import ./modules.nix) mergeDefinitions; };
+with {inherit (import ./modules.nix) mergeDefinitions filterOverrides; };
rec {
@@ -166,6 +166,23 @@ rec {
substSubModules = m: loaOf (elemType.substSubModules m);
};
+ # List or element of ...
+ loeOf = elemType: mkOptionType {
+ name = "element or list of ${elemType.name}s";
+ check = x: isList x || elemType.check x;
+ merge = loc: defs:
+ let
+ defs' = filterOverrides defs;
+ res = (head defs').value;
+ in
+ if isList res then concatLists (getValues defs')
+ else if lessThan 1 (length defs') then
+ throw "The option `${showOption loc}' is defined multiple times, in ${showFiles (getFiles defs)}."
+ else if !isString res then
+ throw "The option `${showOption loc}' does not have a string value, in ${showFiles (getFiles defs)}."
+ else res;
+ };
+
uniq = elemType: mkOptionType {
inherit (elemType) name check;
merge = mergeOneOption;
diff --git a/maintainers/scripts/gnome-latest.sh b/maintainers/scripts/gnome-latest.sh
deleted file mode 100755
index 63b309c5a77c..000000000000
--- a/maintainers/scripts/gnome-latest.sh
+++ /dev/null
@@ -1,95 +0,0 @@
-#!/usr/bin/env bash
-
-GNOME_FTP="ftp.gnome.org/pub/GNOME/sources"
-
-project=$1
-
-if [ "$project" == "--help" ]; then
- echo "Usage: $0 project [major.minor]"
- exit 0
-fi
-
-baseVersion=$2
-
-if [ -z "$project" ]; then
- echo "No project specified, exiting"
- exit 1
-fi
-
-# curl -l ftp://... doesn't work from my office in HSE, and I don't want to have
-# any conversations with sysadmin. Somehow lftp works.
-if [ "$FTP_CLIENT" = "lftp" ]; then
- ls_ftp() {
- lftp -c "open $1; cls"
- }
-else
- ls_ftp() {
- curl -l "$1"/
- }
-fi
-
-if [ -z "$baseVersion" ]; then
- echo "Looking for available versions..." >&2
- available_baseversions=( `ls_ftp ftp://${GNOME_FTP}/${project} | grep '[0-9]\.[0-9]' | sort -t. -k1,1n -k 2,2n` )
- echo -e "The following versions are available:\n ${available_baseversions[@]}" >&2
- echo -en "Choose one of them: " >&2
- read baseVersion
-fi
-
-FTPDIR="${GNOME_FTP}/${project}/${baseVersion}"
-
-#version=`curl -l ${FTPDIR}/ 2>/dev/null | grep LATEST-IS | sed -e s/LATEST-IS-//`
-# gnome's LATEST-IS is broken. Do not trust it.
-
-files=$(ls_ftp "${FTPDIR}")
-declare -A versions
-
-for f in $files; do
- case $f in
- (LATEST-IS-*|*.news|*.changes|*.sha256sum|*.diff*):
- ;;
- ($project-*.*.9*.tar.*):
- tmp=${f#$project-}
- tmp=${tmp%.tar*}
- echo "Ignored unstable version ${tmp}" >&2
- ;;
- ($project-*.tar.*):
- tmp=${f#$project-}
- tmp=${tmp%.tar*}
- versions[${tmp}]=1
- ;;
- (*):
- echo "UNKNOWN FILE $f"
- ;;
- esac
-done
-echo "Found versions ${!versions[@]}" >&2
-version=`echo ${!versions[@]} | sed -e 's/ /\n/g' | sort -t. -k1,1n -k 2,2n -k 3,3n | tail -n1`
-echo "Latest version is: ${version}" >&2
-
-name=${project}-${version}
-echo "Fetching .sha256 file" >&2
-curl -O http://${FTPDIR}/${name}.sha256sum
-
-extensions=( "xz" "bz2" "gz" )
-echo "Choosing archive extension (known are ${extensions[@]})..." >&2
-for ext in ${extensions[@]}; do
- if grep "\\.tar\\.${ext}$" ${name}.sha256sum >& /dev/null; then
- ext_pref=$ext
- sha256=$(grep "\\.tar\\.${ext}$" ${name}.sha256sum | cut -f1 -d\ )
- break
- fi
-done
-sha256=`nix-hash --to-base32 --type sha256 $sha256`
-echo "Chosen ${ext_pref}, hash is ${sha256}" >&2
-
-cat <&2
diff --git a/maintainers/scripts/gnome.sh b/maintainers/scripts/gnome.sh
new file mode 100755
index 000000000000..cd2c57774036
--- /dev/null
+++ b/maintainers/scripts/gnome.sh
@@ -0,0 +1,138 @@
+#!/usr/bin/env bash
+
+set -o pipefail
+
+GNOME_FTP="ftp.gnome.org/pub/GNOME/sources"
+
+usage() {
+ echo "Usage: $0 show|update project [major.minor]" >&2
+ exit 0
+}
+
+if [ "$#" -lt 1 ]; then
+ usage
+fi
+
+action="$1"
+project="$2"
+majorVersion="$3"
+
+if [ "$action" != "show" ] && [ "$action" != "update" ]; then
+ echo "Unknown action $action" >&2
+ usage
+fi
+
+if [ -z "$project" ]; then
+ echo "No project specified, exiting"
+ exit 1
+fi
+
+# curl -l ftp://... doesn't work from my office in HSE, and I don't want to have
+# any conversations with sysadmin. Somehow lftp works.
+if [ "$FTP_CLIENT" = "lftp" ]; then
+ ls_ftp() {
+ lftp -c "open $1; cls"
+ }
+else
+ ls_ftp() {
+ curl -s -l "$1"/
+ }
+fi
+
+if [ -z "$majorVersion" ]; then
+ echo "Looking for available versions..." >&2
+ available_baseversions=( `ls_ftp ftp://${GNOME_FTP}/${project} | grep '[0-9]\.[0-9]' | sort -t. -k1,1n -k 2,2n` )
+ if [ "$?" -ne "0" ]; then
+ echo "Project $project not found" >&2
+ exit 1
+ fi
+
+ echo -e "The following versions are available:\n ${available_baseversions[@]}" >&2
+ echo -en "Choose one of them: " >&2
+ read majorVersion
+fi
+
+if echo "$majorVersion" | grep -q "[0-9]\+\.[0-9]\+\.[0-9]\+"; then
+ # not a major version
+ version="$majorVersion"
+ majorVersion=$(echo "$majorVersion" | cut -d '.' -f 1,2)
+fi
+
+FTPDIR="${GNOME_FTP}/${project}/${majorVersion}"
+
+#version=`curl -l ${FTPDIR}/ 2>/dev/null | grep LATEST-IS | sed -e s/LATEST-IS-//`
+# gnome's LATEST-IS is broken. Do not trust it.
+
+if [ -z "$version" ]; then
+ files=$(ls_ftp "${FTPDIR}")
+ declare -A versions
+
+ for f in $files; do
+ case $f in
+ (LATEST-IS-*|*.news|*.changes|*.sha256sum|*.diff*):
+ ;;
+ ($project-*.*.9*.tar.*):
+ tmp=${f#$project-}
+ tmp=${tmp%.tar*}
+ echo "Ignored unstable version ${tmp}" >&2
+ ;;
+ ($project-*.tar.*):
+ tmp=${f#$project-}
+ tmp=${tmp%.tar*}
+ versions[${tmp}]=1
+ ;;
+ (*):
+ echo "UNKNOWN FILE $f"
+ ;;
+ esac
+ done
+ echo "Found versions ${!versions[@]}" >&2
+ version=`echo ${!versions[@]} | sed -e 's/ /\n/g' | sort -t. -k1,1n -k 2,2n -k 3,3n | tail -n1`
+ echo "Latest version is: ${version}" >&2
+fi
+
+name=${project}-${version}
+echo "Fetching .sha256 file" >&2
+sha256out=$(curl -s -f http://${FTPDIR}/${name}.sha256sum)
+
+if [ "$?" -ne "0" ]; then
+ echo "Version not found" >&2
+ exit 1
+fi
+
+extensions=( "xz" "bz2" "gz" )
+echo "Choosing archive extension (known are ${extensions[@]})..." >&2
+for ext in ${extensions[@]}; do
+ if echo -e "$sha256out" | grep -q "\\.tar\\.${ext}$"; then
+ ext_pref=$ext
+ sha256=$(echo -e "$sha256out" | grep "\\.tar\\.${ext}$" | cut -f1 -d\ )
+ break
+ fi
+done
+echo "Chosen ${ext_pref}, hash is ${sha256}" >&2
+
+src="# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+ name = \"${project}-${version}\";
+
+ src = fetchurl {
+ url = mirror://gnome/sources/${project}/${majorVersion}/${project}-${version}.tar.${ext_pref};
+ sha256 = \"${sha256}\";
+ };
+}"
+
+if [ "$action" == "update" ]; then
+ # find project in nixpkgs tree
+ GNOME_TOP=$(readlink -e $(dirname "${BASH_SOURCE[0]}")"/../../pkgs/desktops/gnome-3/")
+ projectPath=$(find "$GNOME_TOP" -name "$project" -print)
+ if [ -z "$projectPath" ]; then
+ echo "Project $project not found under $GNOME_TOP"
+ exit 1
+ fi
+
+ echo "Updating $projectPath/src.nix"
+ echo -e "$src" > "$projectPath/src.nix"
+else
+ echo -e "\n$src"
+fi
\ No newline at end of file
diff --git a/nixos/doc/manual/release-notes/rl-1509.xml b/nixos/doc/manual/release-notes/rl-1509.xml
index d7d3d1a7fb13..098613f9685a 100644
--- a/nixos/doc/manual/release-notes/rl-1509.xml
+++ b/nixos/doc/manual/release-notes/rl-1509.xml
@@ -6,35 +6,48 @@
Release 15.09 (“Dingo”, 2015/09/??)
-In addition to numerous new and upgraded packages, this release has the following highlights:
+In addition to numerous new and upgraded packages, this release
+has the following highlights:
-
-
-
- The Haskell packages infrastructure has been re-designed from the ground up.
- NixOS now distributes the latest version of every single package registered on
- Hackage, i.e. well over
- 8000 Haskell packages. Further information and usage instructions for the
- improved infrastructure are available at https://nixos.org/wiki/Haskell.
- Users migrating from an earlier release will find also find helpful information
- below, in the list of backwards-incompatible changes.
-
-
+
-
-
- Users running an SSH server who worry about the quality of their
- /etc/ssh/moduli file with respect to the vulnerabilities
- discovered in the Diffie-Hellman key exchange can now replace OpenSSH's
- default version with one they generated themselves using the new
- services.openssh.moduliFile option.
-
-
-
+
+ The Haskell packages infrastructure has been re-designed
+ from the ground up. NixOS now distributes the latest version of
+ every single package registered on Hackage, i.e. well
+ over 8000 Haskell packages. Further information and usage
+ instructions for the improved infrastructure are available at
+ https://nixos.org/wiki/Haskell.
+ Users migrating from an earlier release will also find helpful
+ information below, in the list of backwards-incompatible changes.
+
-
+
+ Nix has been updated to version 1.10, which among other
+ improvements enables cryptographic signatures on binary caches for
+ improved security.
+
+
+
+ You can now keep your NixOS system up to date automatically
+ by setting
+
+
+system.autoUpgrade.enable = true;
+
+
+ This will cause the system to periodically check for updates in
+ your current channel and run nixos-rebuild.
+
+
+
+ This release is based on Glibc 2.21, GCC 4.9 and Linux
+ 3.18.
+
+
+
When upgrading from a previous release, please be aware of the
@@ -50,10 +63,11 @@ and want to continue to use them, please set
system.stateVersion = "14.12";
-(The new option ensures that
+The new option ensures that
certain configuration changes that could break existing systems (such
as the sshd host key setting) will maintain
-compatibility with the specified NixOS release.)
+compatibility with the specified NixOS release. NixOps sets the state
+version of existing deployments automatically.
cron is no longer enabled by
default, unless you have a non-empty
@@ -72,9 +86,9 @@ false.
and old steam package -- to steamOriginal.
-CMPlayer has been renamed to bomi upstream. Package cmplayer
-was accordingly renamed to bomi
-
+CMPlayer has been renamed to bomi upstream. Package
+cmplayer was accordingly renamed to
+bomi
Atom Shell has been renamed to Electron upstream. Package atom-shell
was accordingly renamed to electron
@@ -84,21 +98,20 @@ was accordingly renamed to electron
which contains the latest Elm platform.
-
- The CUPS printing service has been updated to version 2.0.2.
- Furthermore its systemd service has been renamed to cups.service.
-
-
- Local printers are no longer shared or advertised by default. This behavior
- can be changed by enabling services.printing.defaultShared
- or services.printing.browsing respectively.
-
+ The CUPS printing service has been updated to version
+ 2.0.2. Furthermore its systemd service has been
+ renamed to cups.service.
+
+ Local printers are no longer shared or advertised by
+ default. This behavior can be changed by enabling
+ services.printing.defaultShared or
+ services.printing.browsing respectively.
- The VirtualBox host and guest options have been moved/renamed more
- consistently and less confusing to be now found in
+ The VirtualBox host and guest options have been named more
+ consistently. They can now found in
virtualisation.virtualbox.host.* instead of
services.virtualboxHost.* and
virtualisation.virtualbox.guest.* instead of
@@ -207,25 +220,31 @@ nix-env -f "<nixpkgs>" -iA haskellPackages.cabal-install
-The following new services were added since the last release:
-
-
-brltty
-marathon
-tvheadend
-
-
-
-
Other notable improvements:
+
The nixos and nixpkgs channels were unified,
so one can use nix-env -iA nixos.bash
instead of nix-env -iA nixos.pkgs.bash.
See the commit for details.
+
+
+
+ Users running an SSH server who worry about the quality of their
+ /etc/ssh/moduli file with respect to the
+ vulnerabilities
+ discovered in the Diffie-Hellman key exchange can now
+ replace OpenSSH's default version with one they generated
+ themselves using the new
+ services.openssh.moduliFile option.
+
+
+
+
diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml
index 2781cee36148..2745fb2cbe42 100644
--- a/nixos/doc/manual/release-notes/rl-unstable.xml
+++ b/nixos/doc/manual/release-notes/rl-unstable.xml
@@ -7,21 +7,39 @@
Unstable
When upgrading from a previous release, please be aware of the
- following incompatible changes:
+following incompatible changes:
+
+
+
+ wmiiSnap has been replaced with
+ wmii_hg, but
+ services.xserver.windowManager.wmii.enable has
+ been updated respectively so this only affects you if you have
+ explicitly installed wmiiSnap.
+
+
+
+
+ wmiimenu is removed, as it has been
+ removed by the developers upstream. Use wimenu
+ from the wmii-hg package.
+
+
+
+ Gitit is no longer automatically added to the module list in
+ NixOS and as such there will not be any manual entries for it. You
+ will need to add an import statement to your NixOS configuration
+ in order to use it, e.g.
+
+ ];
+}
+]]>
+
+ will include the Gitit service configuration options.
+
+
+
-
-
- wmiiSnap has been replaced with
- wmii_hg, but
- services.xserver.windowManager.wmii.enable
- has been updated respectively so this only affects you if you
- have explicitly installed wmiiSnap.
-
-
- wmiimenu is removed, as it has been removed by
- the developers upstream. Use wimenu from the
- wmii-hg package.
-
-
-
diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix
index 922a9cf961df..be6662decea6 100644
--- a/nixos/modules/config/fonts/fontconfig.nix
+++ b/nixos/modules/config/fonts/fontconfig.nix
@@ -108,10 +108,8 @@ with lib;
subpixel = {
rgba = mkOption {
- type = types.string // {
- check = flip elem ["rgb" "bgr" "vrgb" "vbgr" "none"];
- };
default = "rgb";
+ type = types.enum ["rgb" "bgr" "vrgb" "vbgr" "none"];
description = ''
Subpixel order, one of none,
rgb, bgr,
@@ -120,10 +118,8 @@ with lib;
};
lcdfilter = mkOption {
- type = types.str // {
- check = flip elem ["none" "default" "light" "legacy"];
- };
default = "default";
+ type = types.enum ["none" "default" "light" "legacy"];
description = ''
FreeType LCD filter, one of none,
default, light, or
diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix
index 3622b21626b3..f58e540a6e5c 100644
--- a/nixos/modules/config/i18n.nix
+++ b/nixos/modules/config/i18n.nix
@@ -52,6 +52,15 @@ in
'';
};
+ consoleUseXkbConfig = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ If set, configure the console keymap from the xserver keyboard
+ settings.
+ '';
+ };
+
consoleKeyMap = mkOption {
type = mkOptionType {
name = "string or path";
@@ -74,6 +83,13 @@ in
config = {
+ i18n.consoleKeyMap = with config.services.xserver;
+ mkIf config.i18n.consoleUseXkbConfig
+ (pkgs.runCommand "xkb-console-keymap" { preferLocalBuild = true; } ''
+ '${pkgs.ckbcomp}/bin/ckbcomp' -model '${xkbModel}' -layout '${layout}' \
+ -option '${xkbOptions}' -variant '${xkbVariant}' > "$out"
+ '');
+
environment.systemPackages =
optional (config.i18n.supportedLocales != []) glibcLocales;
diff --git a/nixos/modules/config/ldap.nix b/nixos/modules/config/ldap.nix
index 1a01533c585b..c87996df8855 100644
--- a/nixos/modules/config/ldap.nix
+++ b/nixos/modules/config/ldap.nix
@@ -108,7 +108,7 @@ in
extraConfig = mkOption {
default = "";
- type = types.string;
+ type = types.lines;
description = ''
Extra configuration options that will be added verbatim at
the end of the nslcd configuration file (nslcd.conf).
@@ -120,7 +120,7 @@ in
distinguishedName = mkOption {
default = "";
example = "cn=admin,dc=example,dc=com";
- type = types.string;
+ type = types.str;
description = ''
The distinguished name to bind to the LDAP server with. If this
is not specified, an anonymous bind will be done.
@@ -129,7 +129,7 @@ in
password = mkOption {
default = "/etc/ldap/bind.password";
- type = types.string;
+ type = types.str;
description = ''
The path to a file containing the credentials to use when binding
to the LDAP server (if not binding anonymously).
@@ -149,7 +149,7 @@ in
policy = mkOption {
default = "hard_open";
- type = types.string;
+ type = types.enum [ "hard_open" "hard_init" "soft" ];
description = ''
Specifies the policy to use for reconnecting to an unavailable
LDAP server. The default is hard_open, which
@@ -168,7 +168,7 @@ in
extraConfig = mkOption {
default = "";
- type = types.string;
+ type = types.lines;
description = ''
Extra configuration options that will be added verbatim at
the end of the ldap configuration file (ldap.conf).
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index bff0b2991323..533280890a70 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -41,20 +41,7 @@ in
strings. The latter is concatenated, interspersed with colon
characters.
'';
- type = types.attrsOf (mkOptionType {
- name = "a string or a list of strings";
- merge = loc: defs:
- let
- defs' = filterOverrides defs;
- res = (head defs').value;
- in
- if isList res then concatLists (getValues defs')
- else if lessThan 1 (length defs') then
- throw "The option `${showOption loc}' is defined multiple times, in ${showFiles (getFiles defs)}."
- else if !isString res then
- throw "The option `${showOption loc}' does not have a string value, in ${showFiles (getFiles defs)}."
- else res;
- });
+ type = types.attrsOf (types.loeOf types.str);
apply = mapAttrs (n: v: if isList v then concatStringsSep ":" v else v);
};
diff --git a/nixos/modules/config/system-environment.nix b/nixos/modules/config/system-environment.nix
index 3ab32f00fd1d..3362400326d2 100644
--- a/nixos/modules/config/system-environment.nix
+++ b/nixos/modules/config/system-environment.nix
@@ -23,20 +23,7 @@ in
strings. The latter is concatenated, interspersed with colon
characters.
'';
- type = types.attrsOf (mkOptionType {
- name = "a string or a list of strings";
- merge = loc: defs:
- let
- defs' = filterOverrides defs;
- res = (head defs').value;
- in
- if isList res then concatLists (getValues defs')
- else if lessThan 1 (length defs') then
- throw "The option `${showOption loc}' is defined multiple times, in ${showFiles (getFiles defs)}."
- else if !isString res then
- throw "The option `${showOption loc}' does not have a string value, in ${showFiles (getFiles defs)}."
- else res;
- });
+ type = types.attrsOf (types.loeOf types.str);
apply = mapAttrs (n: v: if isList v then concatStringsSep ":" v else v);
};
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index 3a9a09ee87c1..748ada99be69 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -103,16 +103,23 @@ in
[ "/bin"
"/etc/xdg"
"/info"
- "/lib"
+ "/lib" # FIXME: remove
+ #"/lib/debug/.build-id" # enables GDB to find separated debug info
"/man"
"/sbin"
+ "/share/applications"
+ "/share/desktop-directories"
"/share/doc"
"/share/emacs"
+ "/share/icons"
"/share/info"
"/share/man"
+ "/share/menus"
+ "/share/mime"
"/share/nano"
"/share/org"
"/share/terminfo"
+ "/share/themes"
"/share/vim-plugins"
];
diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index 1e5393f26b54..b0e9ceea10b3 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -229,6 +229,10 @@
riak = 205;
shout = 206;
gateone = 207;
+ namecoin = 208;
+ dnschain = 209;
+ #lxd = 210; # unused
+ kibana = 211;
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
@@ -436,6 +440,10 @@
riak = 205;
#shout = 206; #unused
gateone = 207;
+ namecoin = 208;
+ #dnschain = 209; #unused
+ lxd = 210; # unused
+ #kibana = 211;
# When adding a gid, make sure it doesn't match an existing
# uid. Users and groups with the same name should have equal
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 6734fa0b862b..b03f4494522b 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -197,7 +197,7 @@
./services/misc/etcd.nix
./services/misc/felix.nix
./services/misc/folding-at-home.nix
- ./services/misc/gitit.nix
+ #./services/misc/gitit.nix
./services/misc/gitlab.nix
./services/misc/gitolite.nix
./services/misc/gpsd.nix
@@ -275,6 +275,7 @@
./services/networking/ddclient.nix
./services/networking/dhcpcd.nix
./services/networking/dhcpd.nix
+ ./services/networking/dnschain.nix
./services/networking/dnscrypt-proxy.nix
./services/networking/dnsmasq.nix
./services/networking/docker-registry-server.nix
@@ -303,6 +304,7 @@
./services/networking/minidlna.nix
./services/networking/mstpd.nix
./services/networking/murmur.nix
+ ./services/networking/namecoind.nix
./services/networking/nat.nix
./services/networking/networkmanager.nix
./services/networking/ngircd.nix
@@ -363,6 +365,7 @@
./services/scheduling/fcron.nix
./services/scheduling/marathon.nix
./services/search/elasticsearch.nix
+ ./services/search/kibana.nix
./services/search/solr.nix
./services/security/clamav.nix
./services/security/fail2ban.nix
@@ -372,6 +375,7 @@
./services/security/haveged.nix
./services/security/hologram.nix
./services/security/munge.nix
+ ./services/security/physlock.nix
./services/security/torify.nix
./services/security/tor.nix
./services/security/torsocks.nix
@@ -393,7 +397,6 @@
./services/web-servers/lighttpd/default.nix
./services/web-servers/lighttpd/gitweb.nix
./services/web-servers/nginx/default.nix
- ./services/web-servers/nginx/reverse_proxy.nix
./services/web-servers/phpfpm.nix
./services/web-servers/shellinabox.nix
./services/web-servers/tomcat.nix
@@ -486,6 +489,7 @@
./virtualisation/docker.nix
./virtualisation/libvirtd.nix
./virtualisation/lxc.nix
+ ./virtualisation/lxd.nix
./virtualisation/amazon-options.nix
./virtualisation/openvswitch.nix
./virtualisation/parallels-guest.nix
diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix
index c207829aabd6..9aa0034783fa 100644
--- a/nixos/modules/profiles/base.nix
+++ b/nixos/modules/profiles/base.nix
@@ -47,7 +47,7 @@
];
# Include support for various filesystems.
- boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "zfs" "ntfs" "cifs" ];
+ boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "zfs" "ntfs" "cifs" ];
# Configure host id for ZFS to work
networking.hostId = "8425e349";
diff --git a/nixos/modules/programs/cdemu.nix b/nixos/modules/programs/cdemu.nix
index d1b1915eea91..98df9b94380f 100644
--- a/nixos/modules/programs/cdemu.nix
+++ b/nixos/modules/programs/cdemu.nix
@@ -9,19 +9,28 @@ in {
programs.cdemu = {
enable = mkOption {
default = false;
- description = "Whether to enable cdemu for users of appropriate group (default cdrom)";
+ description = ''
+ cdemu for members of
+ .
+ '';
};
group = mkOption {
default = "cdrom";
- description = "Required group for users of cdemu";
+ description = ''
+ Group that users must be in to use cdemu.
+ '';
};
gui = mkOption {
default = true;
- description = "Whether to install cdemu GUI (gCDEmu)";
+ description = ''
+ Whether to install the cdemu GUI (gCDEmu).
+ '';
};
image-analyzer = mkOption {
default = true;
- description = "Whether to install image analyzer";
+ description = ''
+ Whether to install the image analyzer.
+ '';
};
};
};
diff --git a/nixos/modules/programs/venus.nix b/nixos/modules/programs/venus.nix
index 3b5ae07e82f7..ca3188b18199 100644
--- a/nixos/modules/programs/venus.nix
+++ b/nixos/modules/programs/venus.nix
@@ -41,7 +41,7 @@ in
dates = mkOption {
default = "*:0/15";
- type = types.string;
+ type = types.str;
description = ''
Specification (in the format described by
systemd.time
@@ -52,7 +52,7 @@ in
user = mkOption {
default = "root";
- type = types.string;
+ type = types.str;
description = ''
User for running venus script.
'';
@@ -60,7 +60,7 @@ in
group = mkOption {
default = "root";
- type = types.string;
+ type = types.str;
description = ''
Group for running venus script.
'';
@@ -68,7 +68,7 @@ in
name = mkOption {
default = "NixOS Planet";
- type = types.string;
+ type = types.str;
description = ''
Your planet's name.
'';
@@ -76,7 +76,7 @@ in
link = mkOption {
default = "http://planet.nixos.org";
- type = types.string;
+ type = types.str;
description = ''
Link to the main page.
'';
@@ -84,7 +84,7 @@ in
ownerName = mkOption {
default = "Rok Garbas";
- type = types.string;
+ type = types.str;
description = ''
Your name.
'';
@@ -92,7 +92,7 @@ in
ownerEmail = mkOption {
default = "some@example.com";
- type = types.string;
+ type = types.str;
description = ''
Your e-mail address.
'';
diff --git a/nixos/modules/programs/wvdial.nix b/nixos/modules/programs/wvdial.nix
index 8e7d0e51a4e0..1ed929ed4afa 100644
--- a/nixos/modules/programs/wvdial.nix
+++ b/nixos/modules/programs/wvdial.nix
@@ -24,7 +24,7 @@ in
dialerDefaults = mkOption {
default = "";
- type = types.string;
+ type = types.str;
example = ''Init1 = AT+CGDCONT=1,"IP","internet.t-mobile"'';
description = ''
Contents of the "Dialer Defaults" section of
@@ -40,7 +40,7 @@ in
persist
noauth
'';
- type = types.string;
+ type = types.str;
description = "Default ppp settings for wvdial.";
};
diff --git a/nixos/modules/programs/xfs_quota.nix b/nixos/modules/programs/xfs_quota.nix
index d30a85922cff..90b6304fa999 100644
--- a/nixos/modules/programs/xfs_quota.nix
+++ b/nixos/modules/programs/xfs_quota.nix
@@ -32,25 +32,25 @@ in
};
fileSystem = mkOption {
- type = types.string;
+ type = types.str;
description = "XFS filesystem hosting the xfs_quota project.";
default = "/";
};
path = mkOption {
- type = types.string;
+ type = types.str;
description = "Project directory.";
};
sizeSoftLimit = mkOption {
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
default = null;
example = "30g";
description = "Soft limit of the project size";
};
sizeHardLimit = mkOption {
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
default = null;
example = "50g";
description = "Hard limit of the project size.";
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index cb378b024490..62be7dc6cae2 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -165,5 +165,6 @@ in zipModules ([]
++ obsolete' [ "services" "syslog-ng" "serviceName" ]
++ obsolete' [ "services" "syslog-ng" "listenToJournal" ]
++ obsolete' [ "ec2" "metadata" ]
+++ obsolete' [ "services" "openvpn" "enable" ]
)
diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix
index 474b93b4984d..88760574cbc6 100644
--- a/nixos/modules/security/pam.nix
+++ b/nixos/modules/security/pam.nix
@@ -419,7 +419,7 @@ in
users.motd = mkOption {
default = null;
example = "Today is Sweetmorn, the 4th day of The Aftermath in the YOLD 3178.";
- type = types.nullOr types.string;
+ type = types.nullOr types.lines;
description = "Message of the day shown to users when they log in.";
};
diff --git a/nixos/modules/security/prey.nix b/nixos/modules/security/prey.nix
index e29fa5395a1a..1c643f2e1a57 100644
--- a/nixos/modules/security/prey.nix
+++ b/nixos/modules/security/prey.nix
@@ -16,19 +16,28 @@ in {
default = false;
type = types.bool;
description = ''
- Enables http://preyproject.com/ bash client. Be sure to specify api and device keys.
- Once setup, cronjob will run evert 15 minutes and report status.
+ Enables the
+ shell client. Be sure to specify both API and device keys.
+ Once enabled, a cron job will run every 15
+ minutes to report status information.
'';
};
deviceKey = mkOption {
- type = types.string;
- description = "Device Key obtained from https://panel.preyproject.com/devices (and clicking on the device)";
+ type = types.str;
+ description = ''
+ Device key obtained by visiting
+
+ and clicking on your device.
+ '';
};
apiKey = mkOption {
- type = types.string;
- description = "API key obtained from https://panel.preyproject.com/profile";
+ type = types.str;
+ description = ''
+ API key obtained from
+ .
+ '';
};
};
diff --git a/nixos/modules/services/backup/bacula.nix b/nixos/modules/services/backup/bacula.nix
index 9e3ae66f808b..69f3c3f8a758 100644
--- a/nixos/modules/services/backup/bacula.nix
+++ b/nixos/modules/services/backup/bacula.nix
@@ -169,14 +169,17 @@ in {
type = types.bool;
default = false;
description = ''
- Whether to enable Bacula File Daemon.
+ Whether to enable the Bacula File Daemon.
'';
};
name = mkOption {
default = "${config.networking.hostName}-fd";
description = ''
- The client name that must be used by the Director when connecting. Generally, it is a good idea to use a name related to the machine so that error messages can be easily identified if you have multiple Clients. This directive is required.
+ The client name that must be used by the Director when connecting.
+ Generally, it is a good idea to use a name related to the machine
+ so that error messages can be easily identified if you have multiple
+ Clients. This directive is required.
'';
};
@@ -184,7 +187,9 @@ in {
default = 9102;
type = types.int;
description = ''
- This specifies the port number on which the Client listens for Director connections. It must agree with the FDPort specified in the Client resource of the Director's configuration file. The default is 9102.
+ This specifies the port number on which the Client listens for
+ Director connections. It must agree with the FDPort specified in
+ the Client resource of the Director's configuration file.
'';
};
@@ -202,7 +207,7 @@ in {
description = ''
Extra configuration to be passed in Client directive.
'';
- example = ''
+ example = literalExample ''
Maximum Concurrent Jobs = 20;
Heartbeat Interval = 30;
'';
@@ -213,7 +218,7 @@ in {
description = ''
Extra configuration to be passed in Messages directive.
'';
- example = ''
+ example = literalExample ''
console = all
'';
};
diff --git a/nixos/modules/services/backup/sitecopy-backup.nix b/nixos/modules/services/backup/sitecopy-backup.nix
index 5f2b4e76aeeb..6e4721ded68b 100644
--- a/nixos/modules/services/backup/sitecopy-backup.nix
+++ b/nixos/modules/services/backup/sitecopy-backup.nix
@@ -21,15 +21,16 @@ in
enable = mkOption {
default = false;
description = ''
- Whether to enable sitecopy backups of specified directories.
+ Whether to enable sitecopy backups of specified
+ directories.
'';
};
period = mkOption {
default = "15 04 * * *";
description = ''
- This option defines (in the format used by cron) when the
- sitecopy backup are being run.
+ This option defines (in the format used by cron)
+ when the sitecopy backups are to be run.
The default is to update at 04:15 (at night) every day.
'';
};
@@ -47,9 +48,10 @@ in
];
default = [];
description = ''
- List of attributesets describing the backups.
+ List of attribute sets describing the backups.
- Username/password are extracted from ${stateDir}/sitecopy.secrets at activation
+ Username/password are extracted from
+ ${stateDir}/sitecopy.secrets at activation
time. The secrets file lines should have the following structure:
server username password
diff --git a/nixos/modules/services/cluster/kubernetes.nix b/nixos/modules/services/cluster/kubernetes.nix
index ba09f04d502b..a06384e27139 100644
--- a/nixos/modules/services/cluster/kubernetes.nix
+++ b/nixos/modules/services/cluster/kubernetes.nix
@@ -73,7 +73,7 @@ in {
};
port = mkOption {
- description = "Kubernets apiserver listening port.";
+ description = "Kubernetes apiserver listening port.";
default = 8080;
type = types.int;
};
@@ -211,7 +211,7 @@ in {
};
port = mkOption {
- description = "Kubernets scheduler listening port.";
+ description = "Kubernetes scheduler listening port.";
default = 10251;
type = types.int;
};
@@ -243,7 +243,7 @@ in {
};
port = mkOption {
- description = "Kubernets controller manager listening port.";
+ description = "Kubernetes controller manager listening port.";
default = 10252;
type = types.int;
};
@@ -299,7 +299,7 @@ in {
};
port = mkOption {
- description = "Kubernets kubelet info server listening port.";
+ description = "Kubernetes kubelet info server listening port.";
default = 10250;
type = types.int;
};
diff --git a/nixos/modules/services/databases/mysql.nix b/nixos/modules/services/databases/mysql.nix
index 1cdecedfc772..efc52e917b00 100644
--- a/nixos/modules/services/databases/mysql.nix
+++ b/nixos/modules/services/databases/mysql.nix
@@ -167,6 +167,12 @@ in
unitConfig.RequiresMountsFor = "${cfg.dataDir}";
+ path = [
+ # Needed for the mysql_install_db command in the preStart script
+ # which calls the hostname command.
+ pkgs.nettools
+ ];
+
preStart =
''
if ! test -e ${cfg.dataDir}/mysql; then
diff --git a/nixos/modules/services/hardware/brltty.nix b/nixos/modules/services/hardware/brltty.nix
index d6c05a3d620c..03e530b2c96d 100644
--- a/nixos/modules/services/hardware/brltty.nix
+++ b/nixos/modules/services/hardware/brltty.nix
@@ -4,10 +4,6 @@ with lib;
let
cfg = config.services.brltty;
-
- stateDir = "/run/brltty";
-
- pidFile = "${stateDir}/brltty.pid";
in {
@@ -24,14 +20,24 @@ in {
config = mkIf cfg.enable {
systemd.services.brltty = {
- description = "Braille console driver";
- preStart = ''
- mkdir -p ${stateDir}
- '';
+ description = "Braille Device Support";
+ unitConfig = {
+ Documentation = "http://mielke.cc/brltty/";
+ DefaultDependencies = "no";
+ RequiresMountsFor = "${pkgs.brltty}/var/lib/brltty";
+ };
serviceConfig = {
- ExecStart = "${pkgs.brltty}/bin/brltty --pid-file=${pidFile}";
- Type = "forking";
- PIDFile = pidFile;
+ ExecStart = "${pkgs.brltty}/bin/brltty --no-daemon";
+ Type = "simple"; # Change to notidy after next releae
+ TimeoutStartSec = 5;
+ TimeoutStopSec = 10;
+ Restart = "always";
+ RestartSec = 30;
+ Nice = -10;
+ OOMScoreAdjust = -900;
+ ProtectHome = "read-only";
+ ProtectSystem = "full";
+ SystemCallArchitectures = "native";
};
before = [ "sysinit.target" ];
wantedBy = [ "sysinit.target" ];
diff --git a/nixos/modules/services/hardware/freefall.nix b/nixos/modules/services/hardware/freefall.nix
index 7867956c1ab0..2be339766069 100644
--- a/nixos/modules/services/hardware/freefall.nix
+++ b/nixos/modules/services/hardware/freefall.nix
@@ -2,40 +2,42 @@
with lib;
-{
+let
- ###### interface
+ cfg = config.services.freefall;
- options = with types; {
+in {
- services.freefall = {
+ options.services.freefall = {
- enable = mkOption {
- default = false;
- description = ''
- Whether to protect HP/Dell laptop hard drives (not SSDs) in free fall.
- '';
- type = bool;
- };
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to protect HP/Dell laptop hard drives (not SSDs) in free fall.
+ '';
+ };
- devices = mkOption {
- default = [ "/dev/sda" ];
- description = ''
- Device paths to all internal spinning hard drives.
- '';
- type = listOf string;
- };
+ package = mkOption {
+ type = types.package;
+ default = pkgs.freefall;
+ description = ''
+ freefall derivation to use.
+ '';
+ };
+ devices = mkOption {
+ type = types.listOf types.string;
+ default = [ "/dev/sda" ];
+ description = ''
+ Device paths to all internal spinning hard drives.
+ '';
};
};
- ###### implementation
-
config = let
- cfg = config.services.freefall;
-
mkService = dev:
assert dev != "";
let dev' = utils.escapeSystemdPath dev; in
@@ -43,12 +45,8 @@ with lib;
description = "Free-fall protection for ${dev}";
after = [ "${dev'}.device" ];
wantedBy = [ "${dev'}.device" ];
- path = [ pkgs.freefall ];
- unitConfig = {
- DefaultDependencies = false;
- };
serviceConfig = {
- ExecStart = "${pkgs.freefall}/bin/freefall ${dev}";
+ ExecStart = "${cfg.package}/bin/freefall ${dev}";
Restart = "on-failure";
Type = "forking";
};
@@ -56,9 +54,9 @@ with lib;
in mkIf cfg.enable {
- environment.systemPackages = [ pkgs.freefall ];
+ environment.systemPackages = [ cfg.package ];
- systemd.services = listToAttrs (map mkService cfg.devices);
+ systemd.services = builtins.listToAttrs (map mkService cfg.devices);
};
diff --git a/nixos/modules/services/hardware/udev.nix b/nixos/modules/services/hardware/udev.nix
index 513eb27b4069..c747c24db67d 100644
--- a/nixos/modules/services/hardware/udev.nix
+++ b/nixos/modules/services/hardware/udev.nix
@@ -180,9 +180,7 @@ in
firmware to function). If multiple packages contain firmware
files with the same name, the first package in the list takes
precedence. Note that you must rebuild your system if you add
- files to any of these directories. For quick testing,
- put firmware files in /root/test-firmware
- and add that directory to the list.
+ files to any of these directories.
'';
apply = list: pkgs.buildEnv {
name = "firmware";
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index 117ee1c900f5..aec45d9286d8 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -132,6 +132,7 @@ in
description = "Logstash Daemon";
wantedBy = [ "multi-user.target" ];
environment = { JAVA_HOME = jre; };
+ path = [ pkgs.bash ];
serviceConfig = {
ExecStart =
"${cfg.package}/bin/logstash agent " +
diff --git a/nixos/modules/services/mail/mlmmj.nix b/nixos/modules/services/mail/mlmmj.nix
index 5843a6745f58..e2b37522cb16 100644
--- a/nixos/modules/services/mail/mlmmj.nix
+++ b/nixos/modules/services/mail/mlmmj.nix
@@ -14,7 +14,7 @@ let
alias = domain: list: "${list}: \"|${pkgs.mlmmj}/bin/mlmmj-receive -L ${listDir domain list}/\"";
subjectPrefix = list: "[${list}]";
listAddress = domain: list: "${list}@${domain}";
- customHeaders = list: domain: [ "List-Id: ${list}" "Reply-To: ${list}@${domain}" ];
+ customHeaders = domain: list: [ "List-Id: ${list}" "Reply-To: ${list}@${domain}" ];
footer = domain: list: "To unsubscribe send a mail to ${list}+unsubscribe@${domain}";
createList = d: l: ''
${pkgs.coreutils}/bin/mkdir -p ${listCtl d l}
@@ -90,14 +90,15 @@ in
enable = true;
recipientDelimiter= "+";
extraMasterConf = ''
- mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L ${spoolDir}/$nextHop
+ mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L ${spoolDir}/$nexthop
'';
extraAliases = concatMapStrings (alias cfg.listDomain) cfg.mailLists;
extraConfig = ''
- transport = hash:${stateDir}/transports
- virtual = hash:${stateDir}/virtuals
+ transport_maps = hash:${stateDir}/transports
+ virtual_alias_maps = hash:${stateDir}/virtuals
+ propagate_unmatched_extensions = virtual
'';
};
@@ -108,9 +109,10 @@ in
${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} ${spoolDir}
${lib.concatMapStrings (createList cfg.listDomain) cfg.mailLists}
echo ${lib.concatMapStrings (virtual cfg.listDomain) cfg.mailLists} > ${stateDir}/virtuals
- echo ${cfg.listDomain} mailman: > ${stateDir}/transports
- echo ${lib.concatMapStrings (transport cfg.listDomain) cfg.mailLists} >> ${stateDir}/transports
- '';
+ echo ${lib.concatMapStrings (transport cfg.listDomain) cfg.mailLists} > ${stateDir}/transports
+ ${pkgs.postfix}/bin/postmap ${stateDir}/virtuals
+ ${pkgs.postfix}/bin/postmap ${stateDir}/transports
+ '';
systemd.services."mlmmj-maintd" = {
description = "mlmmj maintenance daemon";
diff --git a/nixos/modules/services/misc/gitit.nix b/nixos/modules/services/misc/gitit.nix
index 10a706fbd71d..befd8c628f16 100644
--- a/nixos/modules/services/misc/gitit.nix
+++ b/nixos/modules/services/misc/gitit.nix
@@ -35,6 +35,7 @@ let
};
haskellPackages = mkOption {
+ default = pkgs.haskellPackages;
defaultText = "pkgs.haskellPackages";
example = literalExample "pkgs.haskell.packages.ghc784";
description = "haskellPackages used to build gitit and plugins.";
@@ -99,7 +100,7 @@ let
};
authenticationMethod = mkOption {
- type = types.enum [ "form" "http" "generic"];
+ type = types.enum [ "form" "http" "generic" "github" ];
default = "form";
description = ''
'form' means that users will be logged in and registered using forms
@@ -137,6 +138,7 @@ let
staticDir = mkOption {
type = types.path;
+ default = gititShared + "/data/static";
description = ''
Specifies the path of the static directory (containing javascript,
css, and images). If it does not exist, gitit will create it and
@@ -207,6 +209,7 @@ let
templatesDir = mkOption {
type = types.path;
+ default = gititShared + "/data/templates";
description = ''
Specifies the path of the directory containing page templates. If it
does not exist, gitit will create it with default templates. Users
@@ -288,6 +291,7 @@ let
plugins = mkOption {
type = with types; listOf str;
+ default = [ (gititShared + "/plugins/Dot.hs") ];
description = ''
Specifies a list of plugins to load. Plugins may be specified either
by their path or by their module name. If the plugin name starts
@@ -537,6 +541,42 @@ video/x-ms-wmx wmx
through xss-sanitize. Set to no only if you trust all of your users.
'';
};
+
+ oauthClientId = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "OAuth client ID";
+ };
+
+ oauthClientSecret = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "OAuth client secret";
+ };
+
+ oauthCallback = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "OAuth callback URL";
+ };
+
+ oauthAuthorizeEndpoint = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "OAuth authorize endpoint";
+ };
+
+ oauthAccessTokenEndpoint = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "OAuth access token endpoint";
+ };
+
+ githubOrg = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = "Github organization";
+ };
};
configFile = pkgs.writeText "gitit.conf" ''
@@ -587,6 +627,14 @@ video/x-ms-wmx wmx
pdf-export: ${toYesNo cfg.pdfExport}
pandoc-user-data: ${toString cfg.pandocUserData}
xss-sanitize: ${toYesNo cfg.xssSanitize}
+
+ [Github]
+ oauthclientid: ${toString cfg.oauthClientId}
+ oauthclientsecret: ${toString cfg.oauthClientSecret}
+ oauthcallback: ${toString cfg.oauthCallback}
+ oauthauthorizeendpoint: ${toString cfg.oauthAuthorizeEndpoint}
+ oauthaccesstokenendpoint: ${toString cfg.oauthAccessTokenEndpoint}
+ github-org: ${toString cfg.githubOrg}
'';
in
@@ -597,13 +645,6 @@ in
config = mkIf cfg.enable {
- services.gitit = {
- haskellPackages = mkDefault pkgs.haskellPackages;
- staticDir = gititShared + "/data/static";
- templatesDir = gititShared + "/data/templates";
- plugins = [ ];
- };
-
users.extraUsers.gitit = {
group = config.users.extraGroups.gitit.name;
description = "Gitit user";
@@ -681,4 +722,3 @@ NAMED
};
};
}
-
diff --git a/nixos/modules/services/misc/nix-gc.nix b/nixos/modules/services/misc/nix-gc.nix
index 981299352575..6a7a7f4cee72 100644
--- a/nixos/modules/services/misc/nix-gc.nix
+++ b/nixos/modules/services/misc/nix-gc.nix
@@ -52,7 +52,7 @@ in
systemd.services.nix-gc =
{ description = "Nix Garbage Collector";
- script = "exec ${config.nix.package}/bin/nix-store --gc ${cfg.options}";
+ script = "exec ${config.nix.package}/bin/nix-collect-garbage ${cfg.options}";
startAt = optionalString cfg.automatic cfg.dates;
};
diff --git a/nixos/modules/services/monitoring/bosun.nix b/nixos/modules/services/monitoring/bosun.nix
index 7a53ce174542..7e8dea4ec024 100644
--- a/nixos/modules/services/monitoring/bosun.nix
+++ b/nixos/modules/services/monitoring/bosun.nix
@@ -30,6 +30,7 @@ in {
package = mkOption {
type = types.package;
+ default = pkgs.bosun;
example = literalExample "pkgs.bosun";
description = ''
bosun binary to use.
@@ -95,8 +96,6 @@ in {
config = mkIf cfg.enable {
- services.bosun.package = mkDefault pkgs.bosun;
-
systemd.services.bosun = {
description = "bosun metrics collector (part of Bosun)";
wantedBy = [ "multi-user.target" ];
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index f987c4792e93..0393d01054d1 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -206,7 +206,7 @@ in {
package = mkOption {
description = "Package to use.";
- default = pkgs.grafana-backend;
+ default = pkgs.grafana;
type = types.package;
};
diff --git a/nixos/modules/services/monitoring/smartd.nix b/nixos/modules/services/monitoring/smartd.nix
index 61ba16123252..1017005226b2 100644
--- a/nixos/modules/services/monitoring/smartd.nix
+++ b/nixos/modules/services/monitoring/smartd.nix
@@ -119,7 +119,7 @@ in
recipient = mkOption {
default = "root";
- type = types.string;
+ type = types.str;
description = "Recipient of the notification messages.";
};
@@ -153,7 +153,7 @@ in
display = mkOption {
default = ":${toString config.services.xserver.display}";
- type = types.string;
+ type = types.str;
description = "DISPLAY to send X11 notifications to.";
};
};
diff --git a/nixos/modules/services/network-filesystems/samba.nix b/nixos/modules/services/network-filesystems/samba.nix
index bbf21634c368..72e9b6144d4b 100644
--- a/nixos/modules/services/network-filesystems/samba.nix
+++ b/nixos/modules/services/network-filesystems/samba.nix
@@ -97,8 +97,8 @@ in
description = ''
Enabling this will add a line directly after pam_unix.so.
Whenever a password is changed the samba password will be updated as well.
- However you still yave to add the samba password once using smbpasswd -a user
- If you don't want to maintain an extra pwd database you still can send plain text
+ However, you still have to add the samba password once, using smbpasswd -a user.
+ If you don't want to maintain an extra password database, you still can send plain text
passwords which is not secure.
'';
};
diff --git a/nixos/modules/services/networking/bitlbee.nix b/nixos/modules/services/networking/bitlbee.nix
index 27b7dd71d9e5..5e6847097a94 100644
--- a/nixos/modules/services/networking/bitlbee.nix
+++ b/nixos/modules/services/networking/bitlbee.nix
@@ -16,11 +16,12 @@ let
''
[settings]
RunMode = Daemon
- User = bitlbee
+ User = bitlbee
ConfigDir = ${cfg.configDir}
DaemonInterface = ${cfg.interface}
DaemonPort = ${toString cfg.portNumber}
AuthMode = ${cfg.authMode}
+ Plugindir = ${pkgs.bitlbee-plugins cfg.plugins}/lib/bitlbee
${lib.optionalString (cfg.hostName != "") "HostName = ${cfg.hostName}"}
${lib.optionalString (cfg.protocols != "") "Protocols = ${cfg.protocols}"}
${cfg.extraSettings}
@@ -72,7 +73,7 @@ in
Open -- Accept connections from anyone, use NickServ for user authentication.
Closed -- Require authorization (using the PASS command during login) before allowing the user to connect at all.
Registered -- Only allow registered users to use this server; this disables the register- and the account command until the user identifies himself.
- '';
+ '';
};
hostName = mkOption {
@@ -85,6 +86,15 @@ in
'';
};
+ plugins = mkOption {
+ type = types.listOf types.package;
+ default = [];
+ example = literalExample "[ pkgs.bitlbee-facebook ]";
+ description = ''
+ The list of bitlbee plugins to install.
+ '';
+ };
+
configDir = mkOption {
default = "/var/lib/bitlbee";
type = types.path;
@@ -107,14 +117,14 @@ in
default = "";
description = ''
Will be inserted in the Settings section of the config file.
- '';
+ '';
};
extraDefaults = mkOption {
default = "";
description = ''
Will be inserted in the Default section of the config file.
- '';
+ '';
};
};
@@ -138,7 +148,7 @@ in
gid = config.ids.gids.bitlbee;
};
- systemd.services.bitlbee =
+ systemd.services.bitlbee =
{ description = "BitlBee IRC to other chat networks gateway";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
diff --git a/nixos/modules/services/networking/connman.nix b/nixos/modules/services/networking/connman.nix
index 482b61997ae1..deb1cbfc1858 100644
--- a/nixos/modules/services/networking/connman.nix
+++ b/nixos/modules/services/networking/connman.nix
@@ -5,7 +5,12 @@ with lib;
let
cfg = config.networking.connman;
+ configFile = pkgs.writeText "connman.conf" ''
+ [General]
+ NetworkInterfaceBlacklist=${concatStringsSep "," cfg.networkInterfaceBlacklist}
+ ${cfg.extraConfig}
+ '';
in {
###### interface
@@ -22,6 +27,23 @@ in {
'';
};
+ extraConfig = mkOption {
+ type = types.lines;
+ default = ''
+ '';
+ description = ''
+ Configuration lines appended to the generated connman configuration file.
+ '';
+ };
+
+ networkInterfaceBlacklist = mkOption {
+ type = with types; listOf string;
+ default = [ "vmnet" "vboxnet" "virbr" "ifb" "ve" ];
+ description = ''
+ Default blacklisted interfaces, this includes NixOS containers interfaces (ve).
+ '';
+ };
+
};
};
@@ -51,7 +73,7 @@ in {
Type = "dbus";
BusName = "net.connman";
Restart = "on-failure";
- ExecStart = "${pkgs.connman}/sbin/connmand --nodaemon";
+ ExecStart = "${pkgs.connman}/sbin/connmand --config=${configFile} --nodaemon";
StandardOutput = "null";
};
};
diff --git a/nixos/modules/services/networking/dnschain.nix b/nixos/modules/services/networking/dnschain.nix
new file mode 100644
index 000000000000..f17f8c832ee4
--- /dev/null
+++ b/nixos/modules/services/networking/dnschain.nix
@@ -0,0 +1,110 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services;
+
+ dnschainConf = pkgs.writeText "dnschain.conf" ''
+ [log]
+ level=info
+
+ [dns]
+ host = 127.0.0.1
+ port = 5333
+ oldDNSMethod = NO_OLD_DNS
+ # TODO: check what that address is acutally used for
+ externalIP = 127.0.0.1
+
+ [http]
+ host = 127.0.0.1
+ port=8088
+ tlsPort=4443
+ '';
+
+in
+
+{
+
+ ###### interface
+
+ options = {
+
+ services.dnschain = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to run dnschain. That implies running
+ namecoind as well, so make sure to configure
+ it appropriately.
+ '';
+ };
+
+ };
+
+ services.dnsmasq = {
+ resolveDnschainQueries = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Resolve .bit top-level domains
+ with dnschain and namecoind.
+ '';
+ };
+
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.dnschain.enable {
+
+ services.namecoind.enable = true;
+
+ services.dnsmasq.servers = optionals cfg.dnsmasq.resolveDnschainQueries [ "/.bit/127.0.0.1#5333" ];
+
+ users.extraUsers = singleton
+ { name = "dnschain";
+ uid = config.ids.uids.dnschain;
+ extraGroups = [ "namecoin" ];
+ description = "Dnschain daemon user";
+ home = "/var/lib/dnschain";
+ createHome = true;
+ };
+
+ systemd.services.dnschain = {
+ description = "Dnschain Daemon";
+ after = [ "namecoind.target" ];
+ wantedBy = [ "multi-user.target" ];
+ path = [ pkgs.openssl ];
+ preStart = ''
+ # Link configuration file into dnschain HOME directory
+ if [ "$(${pkgs.coreutils}/bin/realpath /var/lib/dnschain/.dnschain.conf)" != "${dnschainConf}" ]; then
+ rm -rf /var/lib/dnschain/.dnschain.conf
+ ln -s ${dnschainConf} /var/lib/dnschain/.dnschain.conf
+ fi
+
+ # Create empty namecoin.conf so that dnschain is not
+ # searching for /etc/namecoin/namecoin.conf
+ if [ ! -e /var/lib/dnschain/.namecoin/namecoin.conf ]; then
+ mkdir -p /var/lib/dnschain/.namecoin
+ touch /var/lib/dnschain/.namecoin/namecoin.conf
+ fi
+ '';
+ serviceConfig = {
+ Type = "simple";
+ User = "dnschain";
+ EnvironmentFile = config.services.namecoind.userFile;
+ ExecStart = "${pkgs.dnschain}/bin/dnschain --rpcuser=\${USER} --rpcpassword=\${PASSWORD} --rpcport=8336";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ ExecStop = "${pkgs.coreutils}/bin/kill -KILL $MAINPID";
+ };
+ };
+
+ };
+
+}
diff --git a/nixos/modules/services/networking/dnsmasq.nix b/nixos/modules/services/networking/dnsmasq.nix
index eb3551515723..6907d63d7611 100644
--- a/nixos/modules/services/networking/dnsmasq.nix
+++ b/nixos/modules/services/networking/dnsmasq.nix
@@ -96,7 +96,7 @@ in
Type = "dbus";
BusName = "uk.org.thekelleys.dnsmasq";
ExecStart = "${dnsmasq}/bin/dnsmasq -k --enable-dbus --user=dnsmasq -C ${dnsmasqConf}";
- ExecReload = "${dnsmasq}/bin/kill -HUP $MAINPID";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
};
restartTriggers = [ config.environment.etc.hosts.source ];
};
diff --git a/nixos/modules/services/networking/namecoind.nix b/nixos/modules/services/networking/namecoind.nix
new file mode 100644
index 000000000000..83fc1ec66679
--- /dev/null
+++ b/nixos/modules/services/networking/namecoind.nix
@@ -0,0 +1,150 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.namecoind;
+
+ namecoinConf =
+ let
+ useSSL = (cfg.rpcCertificate != null) && (cfg.rpcKey != null);
+ in
+ pkgs.writeText "namecoin.conf" ''
+ server=1
+ daemon=0
+ rpcallowip=127.0.0.1
+ walletpath=${cfg.wallet}
+ gen=${if cfg.generate then "1" else "0"}
+ rpcssl=${if useSSL then "1" else "0"}
+ ${optionalString useSSL "rpcsslcertificatechainfile=${cfg.rpcCertificate}"}
+ ${optionalString useSSL "rpcsslprivatekeyfile=${cfg.rpcKey}"}
+ ${optionalString useSSL "rpcsslciphers=TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH"}
+ txindex=1
+ txprevcache=1
+ '';
+
+in
+
+{
+
+ ###### interface
+
+ options = {
+
+ services.namecoind = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to run namecoind.
+ '';
+ };
+
+ wallet = mkOption {
+ type = types.path;
+ example = "/etc/namecoin/wallet.dat";
+ description = ''
+ Wallet file. The ownership of the file has to be
+ namecoin:namecoin, and the permissions must be 0640.
+ '';
+ };
+
+ userFile = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "/etc/namecoin/user";
+ description = ''
+ File containing the user name and user password to
+ authenticate RPC connections to namecoind.
+ The content of the file is of the form:
+
+ USER=namecoin
+ PASSWORD=secret
+
+ The ownership of the file has to be namecoin:namecoin,
+ and the permissions must be 0640.
+ '';
+ };
+
+ generate = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to generate (mine) Namecoins.
+ '';
+ };
+
+ rpcCertificate = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "/etc/namecoin/server.cert";
+ description = ''
+ Certificate file for securing RPC connections.
+ '';
+ };
+
+ rpcKey = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = "/etc/namecoin/server.pem";
+ description = ''
+ Key file for securing RPC connections.
+ '';
+ };
+
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+
+ users.extraUsers = singleton
+ { name = "namecoin";
+ uid = config.ids.uids.namecoin;
+ description = "Namecoin daemon user";
+ home = "/var/lib/namecoin";
+ createHome = true;
+ };
+
+ users.extraGroups = singleton
+ { name = "namecoin";
+ gid = config.ids.gids.namecoin;
+ };
+
+ systemd.services.namecoind = {
+ description = "Namecoind Daemon";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+ preStart = ''
+ if [ "$(stat --printf '%u' ${cfg.userFile})" != "${toString config.ids.uids.namecoin}" \
+ -o "$(stat --printf '%g' ${cfg.userFile})" != "${toString config.ids.gids.namecoin}" \
+ -o "$(stat --printf '%a' ${cfg.userFile})" != "640" ]; then
+ echo "ERROR: bad ownership or rights on ${cfg.userFile}" >&2
+ exit 1
+ fi
+ if [ "$(stat --printf '%u' ${cfg.wallet})" != "${toString config.ids.uids.namecoin}" \
+ -o "$(stat --printf '%g' ${cfg.wallet})" != "${toString config.ids.gids.namecoin}" \
+ -o "$(stat --printf '%a' ${cfg.wallet})" != "640" ]; then
+ echo "ERROR: bad ownership or rights on ${cfg.wallet}" >&2
+ exit 1
+ fi
+ '';
+ serviceConfig = {
+ Type = "simple";
+ User = "namecoin";
+ EnvironmentFile = cfg.userFile;
+ ExecStart = "${pkgs.altcoins.namecoind}/bin/namecoind -conf=${namecoinConf} -rpcuser=\${USER} -rpcpassword=\${PASSWORD} -printtoconsole";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ ExecStop = "${pkgs.coreutils}/bin/kill -KILL $MAINPID";
+ StandardOutput = "null";
+ Nice = "10";
+ };
+ };
+
+ };
+
+}
diff --git a/nixos/modules/services/networking/ntpd.nix b/nixos/modules/services/networking/ntpd.nix
index a9183577d0a2..5256fc9bc071 100644
--- a/nixos/modules/services/networking/ntpd.nix
+++ b/nixos/modules/services/networking/ntpd.nix
@@ -6,6 +6,8 @@ let
inherit (pkgs) ntp;
+ cfg = config.services.ntp;
+
stateDir = "/var/lib/ntp";
ntpUser = "ntp";
@@ -16,10 +18,10 @@ let
restrict 127.0.0.1
restrict -6 ::1
- ${toString (map (server: "server " + server + " iburst\n") config.services.ntp.servers)}
+ ${toString (map (server: "server " + server + " iburst\n") cfg.servers)}
'';
- ntpFlags = "-c ${configFile} -u ${ntpUser}:nogroup";
+ ntpFlags = "-c ${configFile} -u ${ntpUser}:nogroup ${toString cfg.extraFlags}";
in
@@ -51,6 +53,12 @@ in
'';
};
+ extraFlags = mkOption {
+ type = types.listOf types.str;
+ description = "Extra flags passed to the ntpd command.";
+ default = [];
+ };
+
};
};
diff --git a/nixos/modules/services/networking/oidentd.nix b/nixos/modules/services/networking/oidentd.nix
index 923e7cd0986e..738ab8313a5d 100644
--- a/nixos/modules/services/networking/oidentd.nix
+++ b/nixos/modules/services/networking/oidentd.nix
@@ -28,7 +28,9 @@ with lib;
jobs.oidentd =
{ startOn = "started network-interfaces";
daemonType = "fork";
- exec = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup";
+ exec = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup" +
+ optionalString config.networking.enableIPv6 " -a ::"
+ ;
};
users.extraUsers.oidentd = {
diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix
index 9dc88e61865d..a96888dec864 100644
--- a/nixos/modules/services/networking/openvpn.nix
+++ b/nixos/modules/services/networking/openvpn.nix
@@ -67,12 +67,6 @@ in
options = {
- /* !!! Obsolete. */
- services.openvpn.enable = mkOption {
- default = true;
- description = "Whether to enable OpenVPN.";
- };
-
services.openvpn.servers = mkOption {
default = {};
diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix
index 64620bf16041..3436bd01d848 100644
--- a/nixos/modules/services/search/elasticsearch.nix
+++ b/nixos/modules/services/search/elasticsearch.nix
@@ -37,6 +37,12 @@ in {
type = types.bool;
};
+ package = mkOption {
+ description = "Elasticsearch package to use.";
+ default = pkgs.elasticsearch;
+ type = types.package;
+ };
+
host = mkOption {
description = "Elasticsearch listen address.";
default = "127.0.0.1";
@@ -123,7 +129,7 @@ in {
after = [ "network-interfaces.target" ];
environment = { ES_HOME = cfg.dataDir; };
serviceConfig = {
- ExecStart = "${pkgs.elasticsearch}/bin/elasticsearch -Des.path.conf=${configDir} ${toString cfg.extraCmdLineOptions}";
+ ExecStart = "${cfg.package}/bin/elasticsearch -Des.path.conf=${configDir} ${toString cfg.extraCmdLineOptions}";
User = "elasticsearch";
PermissionsStartOnly = true;
};
@@ -142,7 +148,7 @@ in {
'';
};
- environment.systemPackages = [ pkgs.elasticsearch ];
+ environment.systemPackages = [ cfg.package ];
users.extraUsers = singleton {
name = "elasticsearch";
diff --git a/nixos/modules/services/search/kibana.nix b/nixos/modules/services/search/kibana.nix
new file mode 100644
index 000000000000..f47ab8f55861
--- /dev/null
+++ b/nixos/modules/services/search/kibana.nix
@@ -0,0 +1,168 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.kibana;
+
+ cfgFile = pkgs.writeText "kibana.json" (builtins.toJSON (
+ (filterAttrsRecursive (n: v: v != null) ({
+ server = {
+ host = cfg.host;
+ port = cfg.port;
+ ssl = {
+ cert = cfg.cert;
+ key = cfg.key;
+ };
+ };
+
+ kibana = {
+ index = cfg.index;
+ defaultAppId = cfg.defaultAppId;
+ };
+
+ elasticsearch = {
+ url = cfg.elasticsearch.url;
+ username = cfg.elasticsearch.username;
+ password = cfg.elasticsearch.password;
+ ssl = {
+ cert = cfg.elasticsearch.cert;
+ key = cfg.elasticsearch.key;
+ ca = cfg.elasticsearch.ca;
+ };
+ };
+
+ logging = {
+ verbose = cfg.logLevel == "verbose";
+ quiet = cfg.logLevel == "quiet";
+ silent = cfg.logLevel == "silent";
+ dest = "stdout";
+ };
+ } // cfg.extraConf)
+ )));
+in {
+ options.services.kibana = {
+ enable = mkEnableOption "enable kibana service";
+
+ host = mkOption {
+ description = "Kibana listening host";
+ default = "127.0.0.1";
+ type = types.str;
+ };
+
+ port = mkOption {
+ description = "Kibana listening port";
+ default = 5601;
+ type = types.int;
+ };
+
+ cert = mkOption {
+ description = "Kibana ssl certificate.";
+ default = null;
+ type = types.nullOr types.path;
+ };
+
+ key = mkOption {
+ description = "Kibana ssl key.";
+ default = null;
+ type = types.nullOr types.path;
+ };
+
+ index = mkOption {
+ description = "Elasticsearch index to use for saving kibana config.";
+ default = ".kibana";
+ type = types.str;
+ };
+
+ defaultAppId = mkOption {
+ description = "Elasticsearch default application id.";
+ default = "discover";
+ type = types.str;
+ };
+
+ elasticsearch = {
+ url = mkOption {
+ description = "Elasticsearch url";
+ default = "http://localhost:9200";
+ type = types.str;
+ };
+
+ username = mkOption {
+ description = "Username for elasticsearch basic auth.";
+ default = null;
+ type = types.nullOr types.str;
+ };
+
+ password = mkOption {
+ description = "Password for elasticsearch basic auth.";
+ default = null;
+ type = types.nullOr types.str;
+ };
+
+ ca = mkOption {
+ description = "CA file to auth against elasticsearch.";
+ default = null;
+ type = types.nullOr types.path;
+ };
+
+ cert = mkOption {
+ description = "Certificate file to auth against elasticsearch.";
+ default = null;
+ type = types.nullOr types.path;
+ };
+
+ key = mkOption {
+ description = "Key file to auth against elasticsearch.";
+ default = null;
+ type = types.nullOr types.path;
+ };
+ };
+
+ logLevel = mkOption {
+ description = "Kibana log level";
+ default = "normal";
+ type = types.enum ["verbose" "normal" "silent" "quiet"];
+ };
+
+ package = mkOption {
+ description = "Kibana package to use";
+ default = pkgs.kibana;
+ type = types.package;
+ };
+
+ dataDir = mkOption {
+ description = "Kibana data directory";
+ default = "/var/lib/kibana";
+ type = types.path;
+ };
+
+ extraConf = mkOption {
+ description = "Kibana extra configuration";
+ default = {};
+ type = types.attrs;
+ };
+ };
+
+ config = mkIf (cfg.enable) {
+ systemd.services.kibana = {
+ description = "Kibana Service";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network-interfaces.target" "elasticsearch.service" ];
+ serviceConfig = {
+ ExecStart = "${cfg.package}/bin/kibana --config ${cfgFile}";
+ User = "kibana";
+ WorkingDirectory = cfg.dataDir;
+ };
+ };
+
+ environment.systemPackages = [ cfg.package ];
+
+ users.extraUsers = singleton {
+ name = "kibana";
+ uid = config.ids.uids.kibana;
+ description = "Kibana service user";
+ home = cfg.dataDir;
+ createHome = true;
+ };
+ };
+}
diff --git a/nixos/modules/services/security/physlock.nix b/nixos/modules/services/security/physlock.nix
new file mode 100644
index 000000000000..34d0be3b1beb
--- /dev/null
+++ b/nixos/modules/services/security/physlock.nix
@@ -0,0 +1,114 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.physlock;
+in
+
+{
+
+ ###### interface
+
+ options = {
+
+ services.physlock = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable the physlock screen locking mechanism.
+
+ Enable this and then run systemctl start physlock
+ to securely lock the screen.
+
+ This will switch to a new virtual terminal, turn off console
+ switching and disable SysRq mechanism (when
+ is set)
+ until the root or
+ password is given.
+ '';
+ };
+
+ user = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ User whose password will be used to unlock the screen on par
+ with the root password.
+ '';
+ };
+
+ disableSysRq = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to disable SysRq when locked with physlock.
+ '';
+ };
+
+ lockOn = {
+
+ suspend = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to lock screen with physlock just before suspend.
+ '';
+ };
+
+ hibernate = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to lock screen with physlock just before hibernate.
+ '';
+ };
+
+ extraTargets = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [ "display-manager.service" ];
+ description = ''
+ Other targets to lock the screen just before.
+
+ Useful if you want to e.g. both autologin to X11 so that
+ your ~/.xsession gets executed and
+ still to have the screen locked so that the system can be
+ booted relatively unattended.
+ '';
+ };
+
+ };
+
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+
+ # for physlock -l and physlock -L
+ environment.systemPackages = [ pkgs.physlock ];
+
+ systemd.services."physlock" = {
+ enable = true;
+ description = "Physlock";
+ wantedBy = optional cfg.lockOn.suspend "suspend.target"
+ ++ optional cfg.lockOn.hibernate "hibernate.target"
+ ++ cfg.lockOn.extraTargets;
+ before = optional cfg.lockOn.suspend "systemd-suspend.service"
+ ++ optional cfg.lockOn.hibernate "systemd-hibernate.service"
+ ++ cfg.lockOn.extraTargets;
+ serviceConfig.Type = "forking";
+ script = ''
+ ${pkgs.physlock}/bin/physlock -d${optionalString cfg.disableSysRq "s"}${optionalString (cfg.user != null) " -u ${cfg.user}"}
+ '';
+ };
+
+ };
+
+}
diff --git a/nixos/modules/services/torrent/deluge.nix b/nixos/modules/services/torrent/deluge.nix
index 00df4042d890..becd57055d41 100644
--- a/nixos/modules/services/torrent/deluge.nix
+++ b/nixos/modules/services/torrent/deluge.nix
@@ -36,6 +36,8 @@ in {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.pythonPackages.deluge ];
serviceConfig.ExecStart = "${pkgs.pythonPackages.deluge}/bin/deluged -d";
+ # To prevent "Quit & shutdown daemon" from working; we want systemd to manage it!
+ serviceConfig.Restart = "on-success";
serviceConfig.User = "deluge";
serviceConfig.Group = "deluge";
};
diff --git a/nixos/modules/services/web-servers/apache-httpd/wordpress.nix b/nixos/modules/services/web-servers/apache-httpd/wordpress.nix
index 8884569c7bc8..921f774bcaa0 100644
--- a/nixos/modules/services/web-servers/apache-httpd/wordpress.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/wordpress.nix
@@ -5,8 +5,8 @@ with lib;
let
- version = "4.2";
- fullversion = "${version}.2";
+ version = "4.3";
+ fullversion = "${version}";
# Our bare-bones wp-config.php file using the above settings
wordpressConfig = pkgs.writeText "wp-config.php" ''
@@ -40,6 +40,8 @@ let
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
+
+ ${config.extraHtaccess}
'';
# WP translation can be found here:
@@ -72,7 +74,7 @@ let
owner = "WordPress";
repo = "WordPress";
rev = "${fullversion}";
- sha256 = "0gq1j9b0d0rykql3jzdb2yn4adj0rrcsvqrmj3dzx11ir57ilsgc";
+ sha256 = "0sz5jjhjpwqis8336gyq9a77cr4sf8zahd1y4pzmpvpzn9cn503y";
};
installPhase = ''
mkdir -p $out
@@ -220,7 +222,18 @@ in
settings, see .
'';
};
- };
+ extraHtaccess = mkOption {
+ default = "";
+ example =
+ ''
+ php_value upload_max_filesize 20M
+ php_value post_max_size 20M
+ '';
+ description = ''
+ Any additional text to be appended to Wordpress's .htaccess file.
+ '';
+ };
+ };
documentRoot = wordpressRoot;
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index b16f701a0c9f..25816446e999 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -8,12 +8,13 @@ let
configFile = pkgs.writeText "nginx.conf" ''
user ${cfg.user} ${cfg.group};
daemon off;
+
${cfg.config}
+
${optionalString (cfg.httpConfig != "") ''
http {
- ${cfg.httpConfig}
- ${cfg.httpServers}
- ${cfg.httpDefaultServer}
+ include ${cfg.package}/conf/mime.types;
+ ${cfg.httpConfig}
}
''}
${cfg.appendConfig}
@@ -62,32 +63,7 @@ in
httpConfig = mkOption {
type = types.lines;
default = "";
- description = ''
- Configuration lines to be placed at the top inside of
- the http {} block. The option is intended to be used for
- the default configuration of the servers.
- '';
- };
-
- httpServers = mkOption {
- type = types.lines;
- default = "";
- description = ''
- Configuration lines to be placed inside of the http {}
- block. The option is intended to be used for defining
- individual servers.
- '';
- };
-
- httpDefaultServer = mkOption {
- type = types.lines;
- default = "";
- description = ''
- Configuration lines to be placed at the bottom inside of
- the http {} block. The option is intended to be used for
- setting up the default servers. The default server is used
- if no previously specified server matches a request.
- '';
+ description = "Configuration lines to be appended inside of the http {} block.";
};
stateDir = mkOption {
diff --git a/nixos/modules/services/web-servers/nginx/reverse_proxy.nix b/nixos/modules/services/web-servers/nginx/reverse_proxy.nix
deleted file mode 100644
index c21406dff29a..000000000000
--- a/nixos/modules/services/web-servers/nginx/reverse_proxy.nix
+++ /dev/null
@@ -1,233 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
-
- cfg = config.services.nginx;
-
- defaultSSL = cfg.httpDefaultKey != null || cfg.httpDefaultCertificate != null;
-
- validSSL = key: cert: cert != null && key != null || cert == null && key == null;
-
-in
-
-{
- options = {
-
- services.nginx = {
-
- reverseProxies = mkOption {
- type = types.attrsOf (types.submodule (
- {
- options = {
- proxy = mkOption {
- type = types.str;
- default = [];
- description = ''
- Exclude files and directories matching these patterns.
- '';
- };
-
- key = mkOption {
- type = types.nullOr types.path;
- default = null;
- description = ''
- Exclude files and directories matching these patterns.
- '';
- };
-
- certificate = mkOption {
- type = types.nullOr types.path;
- default = null;
- description = ''
- Exclude files and directories matching these patterns.
- '';
- };
- };
- }
- ));
-
- default = {};
-
- example = literalExample ''
- {
- "hydra.yourdomain.org" =
- { proxy = "localhost:3000";
- key = "/etc/nixos/certs/hydra_key.key";
- certificate = "/etc/nixos/certs/hydra_cert.crt";
- };
- }
- '';
-
- description = ''
- A reverse proxy server configuration is created for every attribute.
- The attribute name corresponds to the name the server is listening to,
- and the proxy option defines the target to forward the requests to.
- If a key and certificate are given, then the server is secured through
- a SSL connection. Non-SSL requests on port 80 are automatically
- re-directed to the SSL server on port 443.
- '';
- };
-
- httpDefaultKey = mkOption {
- type = types.nullOr types.path;
- default = null;
- example = "/etc/nixos/certs/defaut_key.key";
- description = ''
- Key of SSL certificate for default server.
- The default certificate is presented by the default server during
- the SSL handshake when no specialized server configuration matches
- a request.
- A default SSL certificate is also helpful if browsers do not
- support the TLS Server Name Indication extension (SNI, RFC 6066).
- '';
- };
-
- httpDefaultCertificate = mkOption {
- type = types.nullOr types.path;
- default = null;
- example = "/etc/nixos/certs/defaut_key.crt";
- description = ''
- SSL certificate for default server.
- The default certificate is presented by the default server during
- the SSL handshake when no specialized server configuration matches
- a request.
- A default SSL certificate is also helpful if browsers do not
- support the TLS Server Name Indication extension (SNI, RFC 6066).
- '';
- };
-
- };
-
- };
-
-
- config = mkIf (cfg.reverseProxies != {}) {
-
- assertions = [
- { assertion = all id (mapAttrsToList (n: v: validSSL v.certificate v.key) cfg.reverseProxies);
- message = ''
- One (or more) reverse proxy configurations specify only either
- the key option or the certificate option. Both certificate
- with associated key have to be configured to enable SSL for a
- server configuration.
-
- services.nginx.reverseProxies: ${toString cfg.reverseProxies}
- '';
- }
- { assertion = validSSL cfg.httpDefaultCertificate cfg.httpDefaultKey;
- message = ''
- The default server configuration specifies only either the key
- option or the certificate option. Both httpDefaultCertificate
- with associated httpDefaultKey have to be configured to enable
- SSL for the default server configuration.
-
- services.nginx.httpDefaultCertificate: ${toString cfg.httpDefaultCertificate}
-
- services.nginx.httpDefaultKey : ${toString cfg.httpDefaultKey}
- '';
- }
- ];
-
- services.nginx.config = mkBefore ''
- worker_processes 1;
- error_log logs/error.log debug;
- pid logs/nginx.pid;
- events {
- worker_connections 1024;
- }
- '';
-
- services.nginx.httpConfig = mkBefore ''
- log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"';
- access_log logs/access.log main;
- sendfile on;
- tcp_nopush on;
- keepalive_timeout 10;
- gzip on;
-
- ${lib.optionalString defaultSSL ''
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 10m;
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
- ssl_ciphers HIGH:!aNULL:!MD5;
- ssl_certificate ${cfg.httpDefaultCertificate};
- ssl_certificate_key ${cfg.httpDefaultKey};
- ''}
- '';
-
- services.nginx.httpDefaultServer = mkBefore ''
- # reject as default policy
- server {
- listen 80 default_server;
- listen [::]:80 default_server;
- ${lib.optionalString defaultSSL "listen 443 default_server ssl;"}
- return 444;
- }
- '';
-
- services.nginx.httpServers =
- let
- useSSL = certificate: key: certificate != null && key != null;
-
- server = servername: proxy: certificate: key: useSSL: ''
- server {
- server_name ${servername};
- keepalive_timeout 70;
-
- ${if !useSSL then ''
- listen 80;
- listen [::]:80;
- '' else ''
- listen 443 ssl;
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 10m;
- ssl_certificate ${certificate};
- ssl_certificate_key ${key};
- ''}
-
- location / {
- proxy_pass ${proxy};
-
- ### force timeouts if one of backend is dead ##
- proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
-
- ### Set headers ####
- proxy_set_header Accept-Encoding "";
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
-
- ${lib.optionalString useSSL ''
- ### Most PHP, Python, Rails, Java App can use this header ###
- #proxy_set_header X-Forwarded-Proto https;##
- #This is better##
- proxy_set_header X-Forwarded-Proto $scheme;
- add_header Front-End-Https on;
- ''}
-
- ### By default we don't want to redirect it ####
- proxy_redirect off;
- proxy_buffering off;
- }
- }
-
- ${lib.optionalString useSSL ''
- # redirect http to https
- server {
- listen 80;
- listen [::]:80;
- server_name ${servername};
- return 301 https://$server_name$request_uri;
- }
- ''}
- '';
- in
- concatStrings (mapAttrsToList (n: v: server n v.proxy v.certificate v.key (useSSL v.proxy v.certificate)) cfg.reverseProxies);
-
- };
-
-}
diff --git a/nixos/modules/services/x11/desktop-managers/e19.nix b/nixos/modules/services/x11/desktop-managers/e19.nix
index 74065c862ef7..2d5c7b192bc6 100644
--- a/nixos/modules/services/x11/desktop-managers/e19.nix
+++ b/nixos/modules/services/x11/desktop-managers/e19.nix
@@ -62,7 +62,6 @@ in
waitPID=$!
'';
}];
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = true;
security.setuidPrograms = [ "e19_freqset" ];
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index 507c2d2da139..fdee5fbc6c5b 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -99,7 +99,6 @@ in {
networking.networkmanager.enable = mkDefault true;
services.upower.enable = config.powerManagement.enable;
hardware.bluetooth.enable = mkDefault true;
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = false; # true doesn't make sense here, GNOME just doesn't handle it anymore
fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ];
diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix
index 7830e984219a..21b6243ba188 100644
--- a/nixos/modules/services/x11/desktop-managers/kde4.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde4.nix
@@ -111,7 +111,6 @@ in
exec ${kde_workspace}/bin/startkde
'';
};
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = true;
security.setuidOwners = singleton
{ program = "kcheckpass";
diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix
index 01a8704fea71..5061d59b7c7f 100644
--- a/nixos/modules/services/x11/desktop-managers/kde5.nix
+++ b/nixos/modules/services/x11/desktop-managers/kde5.nix
@@ -78,7 +78,6 @@ in
bgSupport = true;
start = ''exec ${plasma5.plasma-workspace}/bin/startkde;'';
};
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = true;
security.setuidOwners = singleton {
program = "kcheckpass";
diff --git a/nixos/modules/services/x11/desktop-managers/kodi.nix b/nixos/modules/services/x11/desktop-managers/kodi.nix
index e6d6efaf3a61..de00ff93b17c 100644
--- a/nixos/modules/services/x11/desktop-managers/kodi.nix
+++ b/nixos/modules/services/x11/desktop-managers/kodi.nix
@@ -25,7 +25,6 @@ in
waitPID=$!
'';
}];
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = true;
environment.systemPackages = [ pkgs.kodi ];
};
diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix
index 746f810a11ff..88eefa13de35 100644
--- a/nixos/modules/services/x11/desktop-managers/xfce.nix
+++ b/nixos/modules/services/x11/desktop-managers/xfce.nix
@@ -37,7 +37,6 @@ in
exec ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc}
'';
};
- services.xserver.displayManager.desktopManagerHandlesLidAndPower = true;
environment.systemPackages =
[ pkgs.gtk # To get GTK+'s themes.
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index 55af2ecbb764..887b6f88a741 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -23,6 +23,10 @@ in
GDM is very experimental and may render system unusable.
'';
+ debug = mkEnableOption ''
+ debugging messages in GDM
+ '';
+
autoLogin = mkOption {
default = {};
description = ''
@@ -69,8 +73,7 @@ in
config = mkIf cfg.gdm.enable {
assertions = [
- { assertion = let autoLogin = cfg.gdm.autoLogin; in
- if autoLogin.enable then autoLogin.user != null else true;
+ { assertion = cfg.gdm.autoLogin.enable -> cfg.gdm.autoLogin.user != null;
message = "GDM auto-login requires services.xserver.displayManager.gdm.autoLogin.user to be set";
}
];
@@ -109,13 +112,21 @@ in
programs.dconf.profiles.gdm = "${gdm}/share/dconf/profile/gdm";
+ # Use AutomaticLogin if delay is zero, because it's immediate.
+ # Otherwise with TimedLogin with zero seconds the prompt is still
+ # presented and there's a little delay.
environment.etc."gdm/custom.conf".text = ''
[daemon]
- ${optionalString cfg.gdm.autoLogin.enable ''
- TimedLoginEnable=true
- TimedLogin=${cfg.gdm.autoLogin.user}
- TimedLoginDelay=${toString cfg.gdm.autoLogin.delay}
- ''}
+ ${optionalString cfg.gdm.autoLogin.enable (
+ if cfg.gdm.autoLogin.delay > 0 then ''
+ TimedLoginEnable=true
+ TimedLogin=${cfg.gdm.autoLogin.user}
+ TimedLoginDelay=${toString cfg.gdm.autoLogin.delay}
+ '' else ''
+ AutomaticLoginEnable=true
+ AutomaticLogin=${cfg.gdm.autoLogin.user}
+ '')
+ }
[security]
@@ -126,6 +137,7 @@ in
[chooser]
[debug]
+ ${optionalString cfg.gdm.debug "Enable=true"}
'';
# GDM LFS PAM modules, adapted somehow to NixOS
diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix
index 4f39e05f0f8d..ffae22d2d670 100644
--- a/nixos/modules/services/x11/redshift.nix
+++ b/nixos/modules/services/x11/redshift.nix
@@ -1,58 +1,90 @@
{ config, lib, pkgs, ... }:
+
with lib;
+
let
+
cfg = config.services.redshift;
in {
- options = {
- services.redshift.enable = mkOption {
+
+ options.services.redshift = {
+ enable = mkOption {
type = types.bool;
default = false;
example = true;
- description = "Enable Redshift to change your screen's colour temperature depending on the time of day";
+ description = ''
+ Enable Redshift to change your screen's colour temperature depending on
+ the time of day.
+ '';
};
- services.redshift.latitude = mkOption {
- description = "Your current latitude";
+ latitude = mkOption {
type = types.str;
+ description = ''
+ Your current latitude.
+ '';
};
- services.redshift.longitude = mkOption {
- description = "Your current longitude";
+ longitude = mkOption {
type = types.str;
+ description = ''
+ Your current longitude.
+ '';
};
- services.redshift.temperature = {
+ temperature = {
day = mkOption {
- description = "Colour temperature to use during day time";
+ type = types.int;
default = 5500;
- type = types.int;
+ description = ''
+ Colour temperature to use during the day.
+ '';
};
night = mkOption {
- description = "Colour temperature to use during night time";
+ type = types.int;
default = 3700;
- type = types.int;
+ description = ''
+ Colour temperature to use at night.
+ '';
};
};
- services.redshift.brightness = {
+ brightness = {
day = mkOption {
- description = "Screen brightness to apply during the day (between 0.1 and 1.0)";
- default = "1";
type = types.str;
+ default = "1";
+ description = ''
+ Screen brightness to apply during the day,
+ between 0.1 and 1.0.
+ '';
};
night = mkOption {
- description = "Screen brightness to apply during the night (between 0.1 and 1.0)";
- default = "1";
type = types.str;
+ default = "1";
+ description = ''
+ Screen brightness to apply during the night,
+ between 0.1 and 1.0.
+ '';
};
};
- services.redshift.extraOptions = mkOption {
+ package = mkOption {
+ type = types.package;
+ default = pkgs.redshift;
+ description = ''
+ redshift derivation to use.
+ '';
+ };
+
+ extraOptions = mkOption {
type = types.listOf types.str;
default = [];
example = [ "-v" "-m randr" ];
- description = "Additional command-line arguments to pass to the redshift(1) command";
+ description = ''
+ Additional command-line arguments to pass to
+ redshift.
+ '';
};
};
@@ -63,7 +95,7 @@ in {
after = [ "display-manager.service" ];
wantedBy = [ "graphical.target" ];
serviceConfig.ExecStart = ''
- ${pkgs.redshift}/bin/redshift \
+ ${cfg.package}/bin/redshift \
-l ${cfg.latitude}:${cfg.longitude} \
-t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \
-b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
@@ -73,4 +105,5 @@ in {
serviceConfig.Restart = "always";
};
};
+
}
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 1ec098fded6e..3348e8d0582c 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -13,7 +13,6 @@ let
# Map video driver names to driver packages. FIXME: move into card-specific modules.
knownVideoDrivers = {
- nouveau = { modules = [ pkgs.xf86_video_nouveau ]; };
unichrome = { modules = [ pkgs.xorgVideoUnichrome ]; };
virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
ati = { modules = [ pkgs.xorg.xf86videoati pkgs.xorg.glamoregl ]; };
diff --git a/nixos/modules/system/activation/top-level.nix b/nixos/modules/system/activation/top-level.nix
index a977ddb7bb4d..81088a56fb12 100644
--- a/nixos/modules/system/activation/top-level.nix
+++ b/nixos/modules/system/activation/top-level.nix
@@ -99,7 +99,9 @@ let
# makes it bootable.
baseSystem = showWarnings (
if [] == failed then pkgs.stdenv.mkDerivation {
- name = "nixos-${config.system.nixosVersion}";
+ name = let hn = config.networking.hostName;
+ nn = if (hn != "") then hn else "unnamed";
+ in "nixos-system-${nn}-${config.system.nixosVersion}";
preferLocalBuild = true;
allowSubstitutes = false;
buildCommand = systemBuilder;
diff --git a/nixos/modules/system/boot/loader/efi.nix b/nixos/modules/system/boot/loader/efi.nix
index 241cfc7e836d..726634e664d7 100644
--- a/nixos/modules/system/boot/loader/efi.nix
+++ b/nixos/modules/system/boot/loader/efi.nix
@@ -15,7 +15,7 @@ with lib;
efiSysMountPoint = mkOption {
default = "/boot";
- type = types.string;
+ type = types.str;
description = "Where the EFI System Partition is mounted.";
};
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 1b4f0d401e6d..4a14ff1879c9 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -242,20 +242,20 @@ in
name = mkOption {
example = "luksroot";
- type = types.string;
+ type = types.str;
description = "Named to be used for the generated device in /dev/mapper.";
};
device = mkOption {
example = "/dev/sda2";
- type = types.string;
+ type = types.str;
description = "Path of the underlying block device.";
};
header = mkOption {
default = null;
example = "/root/header.img";
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
description = ''
The name of the file or block device that
should be used as header for the encrypted device.
@@ -265,7 +265,7 @@ in
keyFile = mkOption {
default = null;
example = "/dev/sdb1";
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
description = ''
The name of the file (can be a raw device or a partition) that
should be used as the decryption key for the encrypted device. If
@@ -349,7 +349,7 @@ in
ramfsMountPoint = mkOption {
default = "/crypt-ramfs";
- type = types.string;
+ type = types.str;
description = "Path where the ramfs used to update the LUKS key will be mounted during early boot.";
};
@@ -369,19 +369,19 @@ in
fsType = mkOption {
default = "vfat";
- type = types.string;
+ type = types.str;
description = "The filesystem of the unencrypted device.";
};
mountPoint = mkOption {
default = "/crypt-storage";
- type = types.string;
+ type = types.str;
description = "Path where the unencrypted device will be mounted during early boot.";
};
path = mkOption {
default = "/crypt-storage/default";
- type = types.string;
+ type = types.str;
description = ''
Absolute path of the salt on the unencrypted device with
that device's root directory as "/".
diff --git a/nixos/modules/system/boot/modprobe.nix b/nixos/modules/system/boot/modprobe.nix
index c49380899664..9bb10eac9880 100644
--- a/nixos/modules/system/boot/modprobe.nix
+++ b/nixos/modules/system/boot/modprobe.nix
@@ -85,11 +85,7 @@ with lib;
'')}
${config.boot.extraModprobeConfig}
'';
- environment.etc."modprobe.d/usb-load-ehci-first.conf".text =
- ''
- softdep uhci_hcd pre: ehci_hcd
- softdep ohci_hcd pre: ehci_hcd
- '';
+ environment.etc."modprobe.d/debian.conf".source = pkgs.kmod-debian-aliases;
environment.systemPackages = [ config.system.sbin.modprobe pkgs.kmod ];
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 893861a2eed2..f782eca3f647 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -241,6 +241,9 @@ let
};
symlink = "/etc/modprobe.d/ubuntu.conf";
}
+ { object = pkgs.kmod-debian-aliases;
+ symlink = "/etc/modprobe.d/debian.conf";
+ }
];
};
diff --git a/nixos/modules/tasks/encrypted-devices.nix b/nixos/modules/tasks/encrypted-devices.nix
index 0370e36fbec2..8b5dd22fd380 100644
--- a/nixos/modules/tasks/encrypted-devices.nix
+++ b/nixos/modules/tasks/encrypted-devices.nix
@@ -22,21 +22,21 @@ let
blkDev = mkOption {
default = null;
example = "/dev/sda1";
- type = types.uniq (types.nullOr types.string);
+ type = types.nullOr types.str;
description = "Location of the backing encrypted device.";
};
label = mkOption {
default = null;
example = "rootfs";
- type = types.uniq (types.nullOr types.string);
+ type = types.nullOr types.str;
description = "Label of the backing encrypted device.";
};
keyFile = mkOption {
default = null;
example = "/root/.swapkey";
- type = types.uniq (types.nullOr types.string);
+ type = types.nullOr types.str;
description = "File system location of keyfile.";
};
};
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index ce21d9fe7621..ce9e3555b6cd 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -22,14 +22,14 @@ let
device = mkOption {
default = null;
example = "/dev/sda";
- type = types.uniq (types.nullOr types.string);
+ type = types.nullOr types.str;
description = "Location of the device.";
};
label = mkOption {
default = null;
example = "root-partition";
- type = types.uniq (types.nullOr types.string);
+ type = types.nullOr types.str;
description = "Label of the device (if any).";
};
diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix
index a967fc77e686..9931c977e8f0 100644
--- a/nixos/modules/tasks/network-interfaces.nix
+++ b/nixos/modules/tasks/network-interfaces.nix
@@ -499,7 +499,7 @@ in
interface = mkOption {
example = "enp4s0";
- type = types.string;
+ type = types.str;
description = "The interface the macvlan will transmit packets through.";
};
@@ -605,7 +605,7 @@ in
interface = mkOption {
example = "enp4s0";
- type = types.string;
+ type = types.str;
description = "The interface the vlan will transmit packets through.";
};
diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix
index 3f554d127c35..1013396c0498 100644
--- a/nixos/modules/virtualisation/azure-image.nix
+++ b/nixos/modules/virtualisation/azure-image.nix
@@ -26,7 +26,7 @@ in
${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vpc $diskImage $out/disk.vhd
rm $diskImage
'';
- diskImageBase = "nixos-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
+ diskImageBase = "nixos-image-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
buildInputs = [ pkgs.utillinux pkgs.perl ];
exportReferencesGraph =
[ "closure" config.system.build.toplevel ];
diff --git a/nixos/modules/virtualisation/brightbox-image.nix b/nixos/modules/virtualisation/brightbox-image.nix
index 3a956caca0c3..0eb46d39b521 100644
--- a/nixos/modules/virtualisation/brightbox-image.nix
+++ b/nixos/modules/virtualisation/brightbox-image.nix
@@ -26,7 +26,7 @@ in
rm $diskImageBase
popd
'';
- diskImageBase = "nixos-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
+ diskImageBase = "nixos-image-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
buildInputs = [ pkgs.utillinux pkgs.perl ];
exportReferencesGraph =
[ "closure" config.system.build.toplevel ];
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index 59f486ff78b7..02cf1fe46a55 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -12,6 +12,12 @@ let
perl = "${pkgs.perl}/bin/perl -I${pkgs.perlPackages.FileSlurp}/lib/perl5/site_perl";
su = "${pkgs.shadow.su}/bin/su";
inherit (pkgs) utillinux;
+
+ postInstall = ''
+ t=$out/etc/bash_completion.d
+ mkdir -p $t
+ cp ${./nixos-container-completion.sh} $t/nixos-container
+ '';
};
# The container's init script, a small wrapper around the regular
@@ -102,7 +108,7 @@ in
};
hostAddress = mkOption {
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
default = null;
example = "10.231.136.1";
description = ''
@@ -111,7 +117,7 @@ in
};
localAddress = mkOption {
- type = types.nullOr types.string;
+ type = types.nullOr types.str;
default = null;
example = "10.231.136.2";
description = ''
@@ -299,7 +305,7 @@ in
''
#! ${pkgs.stdenv.shell} -e
${nixos-container}/bin/nixos-container run "$INSTANCE" -- \
- bash --login -c "/nix/var/nix/profiles/system/bin/switch-to-configuration test"
+ bash --login -c "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/bin/switch-to-configuration test"
'';
SyslogIdentifier = "container %i";
diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix
index ba078cc0a11f..0115b972e80d 100644
--- a/nixos/modules/virtualisation/docker.nix
+++ b/nixos/modules/virtualisation/docker.nix
@@ -67,7 +67,7 @@ in
postStart =
mkOption {
- type = types.string;
+ type = types.lines;
default = ''
while ! [ -e /var/run/docker.sock ]; do
sleep 0.1
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 516da926f847..f21ddc12ca5a 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -30,7 +30,7 @@ in
rm $out/disk.raw
popd
'';
- diskImageBase = "nixos-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
+ diskImageBase = "nixos-image-${config.system.nixosVersion}-${pkgs.stdenv.system}.raw";
buildInputs = [ pkgs.utillinux pkgs.perl ];
exportReferencesGraph =
[ "closure" config.system.build.toplevel ];
diff --git a/nixos/modules/virtualisation/lxd.nix b/nixos/modules/virtualisation/lxd.nix
new file mode 100644
index 000000000000..488153334bc1
--- /dev/null
+++ b/nixos/modules/virtualisation/lxd.nix
@@ -0,0 +1,64 @@
+# Systemd services for lxd.
+
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.virtualisation.lxd;
+
+in
+
+{
+ ###### interface
+
+ options = {
+
+ virtualisation.lxd.enable =
+ mkOption {
+ type = types.bool;
+ default = false;
+ description =
+ ''
+ This option enables lxd, a daemon that manages
+ containers. Users in the "lxd" group can interact with
+ the daemon (e.g. to start or stop containers) using the
+ lxc command line tool, among others.
+ '';
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+
+ environment.systemPackages =
+ [ pkgs.lxd ];
+
+ systemd.services.lxd =
+ { description = "LXD Container Management Daemon";
+
+ wantedBy = [ "multi-user.target" ];
+ after = [ "systemd-udev-settle.service" ];
+
+ # TODO(wkennington): Add lvm2 and thin-provisioning-tools
+ path = with pkgs; [ acl rsync gnutar xz btrfsProgs ];
+
+ serviceConfig.ExecStart = "@${pkgs.lxd}/bin/lxd lxd --syslog --group lxd";
+ serviceConfig.Type = "simple";
+ serviceConfig.KillMode = "process"; # when stopping, leave the containers alone
+ };
+
+ users.extraGroups.lxd.gid = config.ids.gids.lxd;
+
+ users.extraUsers.root = {
+ subUidRanges = [ { startUid = 1000000; count = 65536; } ];
+ subGidRanges = [ { startGid = 1000000; count = 65536; } ];
+ };
+
+ };
+
+}
diff --git a/nixos/modules/virtualisation/nixos-container-completion.sh b/nixos/modules/virtualisation/nixos-container-completion.sh
new file mode 100644
index 000000000000..0fe8ab811a17
--- /dev/null
+++ b/nixos/modules/virtualisation/nixos-container-completion.sh
@@ -0,0 +1,33 @@
+#!/usr/bin/env bash
+
+_nixos-container() {
+ local cur prev opts
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ opts="list create destroy start stop status update login root-login run show-ip show-host-key"
+ startstop_opts=$(nixos-container list)
+ update_opts="--config"
+
+ if [[ "$prev" == "nixos-container" ]]
+ then
+ COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
+ return 0
+ fi
+
+ if [[ $(echo "$opts" | grep "$prev") ]]
+ then
+ if [[ "$prev" == "start" || "$prev" == "stop" ]]
+ then
+ COMPREPLY=( $(compgen -W "${startstop_opts}" -- ${cur}) )
+ return 0
+ elif [[ "$prev" == "update" ]]
+ then
+ COMPREPLY=( $(compgen -W "${update_opts}" -- ${cur}) )
+ return 0
+ fi
+ fi
+}
+
+complete -F _nixos-container nixos-container
+
diff --git a/nixos/modules/virtualisation/nixos-container.pl b/nixos/modules/virtualisation/nixos-container.pl
index f1d9e64ee38f..004385f728c6 100644
--- a/nixos/modules/virtualisation/nixos-container.pl
+++ b/nixos/modules/virtualisation/nixos-container.pl
@@ -290,7 +290,8 @@ elsif ($action eq "show-ip") {
}
elsif ($action eq "show-host-key") {
- my $fn = "$root/etc/ssh/ssh_host_ecdsa_key.pub";
+ my $fn = "$root/etc/ssh/ssh_host_ed25519_key.pub";
+ $fn = "$root/etc/ssh/ssh_host_ecdsa_key.pub" unless -e $fn;
exit 1 if ! -f $fn;
print read_file($fn);
}
diff --git a/nixos/modules/virtualisation/parallels-guest.nix b/nixos/modules/virtualisation/parallels-guest.nix
index 2f40283b3e1d..204ab0b0df67 100644
--- a/nixos/modules/virtualisation/parallels-guest.nix
+++ b/nixos/modules/virtualisation/parallels-guest.nix
@@ -17,7 +17,7 @@ in
type = types.bool;
default = false;
description = ''
- This enables Parallel Tools for Linux guests, along with provided
+ This enables Parallels Tools for Linux guests, along with provided
video, mouse and other hardware drivers.
'';
};
diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix
index c1538feb9df5..2d3b4834fc5b 100644
--- a/nixos/modules/virtualisation/virtualbox-image.nix
+++ b/nixos/modules/virtualisation/virtualbox-image.nix
@@ -101,7 +101,7 @@ in {
system.build.virtualBoxOVA = pkgs.runCommand "virtualbox-ova"
{ buildInputs = [ pkgs.linuxPackages.virtualbox ];
vmName = "NixOS ${config.system.nixosVersion} (${pkgs.stdenv.system})";
- fileName = "nixos-${config.system.nixosVersion}-${pkgs.stdenv.system}.ova";
+ fileName = "nixos-image-${config.system.nixosVersion}-${pkgs.stdenv.system}.ova";
}
''
echo "creating VirtualBox VM..."
@@ -109,7 +109,8 @@ in {
VBoxManage createvm --name "$vmName" --register \
--ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"}
VBoxManage modifyvm "$vmName" \
- --memory 1536 --acpi on --vram 10 \
+ --memory 1536 --acpi on --vram 32 \
+ ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \
--nictype1 virtio --nic1 nat \
--audiocontroller ac97 --audio alsa \
--rtcuseutc on \
diff --git a/nixos/release.nix b/nixos/release.nix
index 2dbc35c7d7bf..4492ee4046ea 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -226,6 +226,7 @@ in rec {
tests.fleet = hydraJob (import tests/fleet.nix { system = "x86_64-linux"; });
#tests.gitlab = callTest tests/gitlab.nix {};
tests.gnome3 = callTest tests/gnome3.nix {};
+ tests.gnome3-gdm = callTest tests/gnome3-gdm.nix {};
tests.i3wm = callTest tests/i3wm.nix {};
tests.installer.grub1 = forAllSystems (system: hydraJob (import tests/installer.nix { inherit system; }).grub1.test);
tests.installer.lvm = forAllSystems (system: hydraJob (import tests/installer.nix { inherit system; }).lvm.test);
diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix
index 3624131b364e..213dd4ca43b3 100644
--- a/nixos/tests/chromium.nix
+++ b/nixos/tests/chromium.nix
@@ -44,6 +44,8 @@ import ./make-test.nix (
search --onlyvisible --name "startup done"
windowfocus --sync
windowactivate --sync
+ ''}");
+ $machine->execute("${xdo "new-window" ''
key Ctrl+n
''}");
});
@@ -55,6 +57,8 @@ import ./make-test.nix (
search --onlyvisible --name "new tab"
windowfocus --sync
windowactivate --sync
+ ''}");
+ $machine->execute("${xdo "close-window" ''
key Ctrl+w
''}");
for (1..20) {
@@ -155,6 +159,8 @@ import ./make-test.nix (
$machine->succeed("${xdo "submit-url" ''
search --sync --onlyvisible --name "sandbox status"
windowfocus --sync
+ ''}");
+ $machine->succeed("${xdo "submit-url" ''
key --delay 1000 Ctrl+a Ctrl+c
''}");
diff --git a/nixos/tests/etcd.nix b/nixos/tests/etcd.nix
index 8a4e7fffce0e..bac4ec6a918b 100644
--- a/nixos/tests/etcd.nix
+++ b/nixos/tests/etcd.nix
@@ -82,7 +82,7 @@ import ./make-test.nix ({ pkgs, ... } : {
subtest "single node", sub {
$simple->start();
$simple->waitForUnit("etcd.service");
- $simple->succeed("etcdctl set /foo/bar 'Hello world'");
+ $simple->waitUntilSucceeds("etcdctl set /foo/bar 'Hello world'");
$simple->waitUntilSucceeds("etcdctl get /foo/bar | grep 'Hello world'");
};
@@ -91,7 +91,7 @@ import ./make-test.nix ({ pkgs, ... } : {
$node2->start();
$node1->waitForUnit("etcd.service");
$node2->waitForUnit("etcd.service");
- $node1->succeed("etcdctl set /foo/bar 'Hello world'");
+ $node1->waitUntilSucceeds("etcdctl set /foo/bar 'Hello world'");
$node2->waitUntilSucceeds("etcdctl get /foo/bar | grep 'Hello world'");
$node1->shutdown();
$node2->shutdown();
@@ -104,7 +104,7 @@ import ./make-test.nix ({ pkgs, ... } : {
$discovery2->start();
$discovery1->waitForUnit("etcd.service");
$discovery2->waitForUnit("etcd.service");
- $discovery1->succeed("etcdctl set /foo/bar 'Hello world'");
+ $discovery1->waitUntilSucceeds("etcdctl set /foo/bar 'Hello world'");
$discovery2->waitUntilSucceeds("etcdctl get /foo/bar | grep 'Hello world'");
};
'';
diff --git a/nixos/tests/gnome3-gdm.nix b/nixos/tests/gnome3-gdm.nix
new file mode 100644
index 000000000000..1c07ddf79c2e
--- /dev/null
+++ b/nixos/tests/gnome3-gdm.nix
@@ -0,0 +1,39 @@
+import ./make-test.nix ({ pkgs, ...} : {
+ name = "gnome3-gdm";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ lethalman ];
+ };
+
+ machine =
+ { config, pkgs, ... }:
+
+ { imports = [ ./common/user-account.nix ];
+
+ services.xserver.enable = true;
+
+ services.xserver.displayManager.gdm = {
+ enable = true;
+ autoLogin = {
+ enable = true;
+ user = "alice";
+ };
+ };
+ services.xserver.desktopManager.gnome3.enable = true;
+
+ virtualisation.memorySize = 512;
+ };
+
+ testScript =
+ ''
+ $machine->waitForX;
+ $machine->sleep(15);
+
+ # Check that logging in has given the user ownership of devices.
+ $machine->succeed("getfacl /dev/snd/timer | grep -q alice");
+
+ $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'");
+ $machine->waitForWindow(qr/Terminal/);
+ $machine->sleep(20);
+ $machine->screenshot("screen");
+ '';
+})
diff --git a/nixos/tests/logstash.nix b/nixos/tests/logstash.nix
index 317ea063e17c..edece352cafe 100644
--- a/nixos/tests/logstash.nix
+++ b/nixos/tests/logstash.nix
@@ -19,8 +19,8 @@ import ./make-test.nix ({ pkgs, ...} : {
exec { command => "echo dragons" interval => 1 type => "test" }
'';
filterConfig = ''
- if [type] == "test" {
- grep { match => ["message", "flowers"] drop => true }
+ if [message] =~ /dragons/ {
+ drop {}
}
'';
outputConfig = ''
diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix
index 83a8b2835dc2..1a5a6f7b5bbc 100644
--- a/nixos/tests/virtualbox.nix
+++ b/nixos/tests/virtualbox.nix
@@ -1,26 +1,41 @@
+{ debug ? false, ... } @ args:
+
import ./make-test.nix ({ pkgs, ... }: with pkgs.lib; let
- debug = false;
+ testVMConfig = vmName: attrs: { config, pkgs, ... }: let
+ guestAdditions = pkgs.linuxPackages.virtualboxGuestAdditions;
- testVMConfig = vmName: attrs: { config, pkgs, ... }: {
- boot.kernelParams = let
- miniInit = ''
- #!${pkgs.stdenv.shell} -xe
- export PATH="${pkgs.coreutils}/bin:${pkgs.utillinux}/bin"
+ miniInit = ''
+ #!${pkgs.stdenv.shell} -xe
+ export PATH="${pkgs.coreutils}/bin:${pkgs.utillinux}/bin"
- ${pkgs.linuxPackages.virtualboxGuestAdditions}/bin/VBoxService
- ${(attrs.vmScript or (const "")) pkgs}
+ mkdir -p /etc/dbus-1 /var/run/dbus
+ cat > /etc/passwd < /etc/group <execute(ru $cmd);
@@ -286,9 +297,15 @@ import ./make-test.nix ({ pkgs, ... }: with pkgs.lib; let
echo "$otherIP reachable" | ${pkgs.netcat}/bin/netcat -clp 5678 || :
'';
+ sysdDetectVirt = pkgs: ''
+ ${pkgs.systemd}/bin/systemd-detect-virt > /mnt-root/result
+ '';
+
vboxVMs = mapAttrs createVM {
simple = {};
+ detectvirt.vmScript = sysdDetectVirt;
+
test1.vmFlags = hostonlyVMFlags;
test1.vmScript = dhcpScript;
@@ -307,7 +324,7 @@ in {
mkVMConf = name: val: val.machine // { key = "${name}-config"; };
vmConfigs = mapAttrsToList mkVMConf vboxVMs;
in [ ./common/user-account.nix ./common/x11.nix ] ++ vmConfigs;
- virtualisation.memorySize = 768;
+ virtualisation.memorySize = 1024;
virtualisation.virtualbox.host.enable = true;
users.extraUsers.alice.extraGroups = let
inherit (config.virtualisation.virtualbox.host) enableHardening;
@@ -372,6 +389,18 @@ in {
destroyVM_simple;
+ subtest "systemd-detect-virt", sub {
+ createVM_detectvirt;
+ vbm("startvm detectvirt");
+ waitForStartup_detectvirt;
+ waitForVMBoot_detectvirt;
+ shutdownVM_detectvirt;
+ my $result = $machine->succeed("cat '$detectvirt_sharepath/result'");
+ chomp $result;
+ die "systemd-detect-virt returned \"$result\" instead of \"oracle\""
+ if $result ne "oracle";
+ };
+
subtest "net-hostonlyif", sub {
createVM_test1;
createVM_test2;
@@ -403,4 +432,4 @@ in {
destroyVM_test2;
};
'';
-})
+}) args
diff --git a/pkgs/applications/audio/beast/default.nix b/pkgs/applications/audio/beast/default.nix
index 3997855a75b6..7113a169e808 100644
--- a/pkgs/applications/audio/beast/default.nix
+++ b/pkgs/applications/audio/beast/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, zlib, guile, libart_lgpl, pkgconfig, intltool
, gtk, glib, libogg, libvorbis, libgnomecanvas, gettext, perl }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
name = "beast-0.7.1";
src = fetchurl {
- url = ftp://beast.gtk.org/pub/beast/v0.7/beast-0.7.1.tar.bz2;
+ url = "http://ftp.gtk.org/pub/beast/v0.7/${name}.tar.bz2";
sha256 = "0jyl1i1918rsn4296w07fsf6wx3clvad522m3bzgf8ms7gxivg5l";
};
diff --git a/pkgs/applications/audio/dfasma/default.nix b/pkgs/applications/audio/dfasma/default.nix
index 2f236eab4e17..fcd30e476cf3 100644
--- a/pkgs/applications/audio/dfasma/default.nix
+++ b/pkgs/applications/audio/dfasma/default.nix
@@ -1,16 +1,58 @@
{ stdenv, fetchFromGitHub, fftw, libsndfile, qt5 }:
-let version = "1.1.2"; in
-stdenv.mkDerivation {
+let
+
+ version = "1.2.5";
+ rev = "v${version}";
+ sha256 = "0mgy2bkmyp7lvaqsr7hkndwdgjf26mlpsj6smrmn1vp0cqyrw72d";
+
+ reaperFork = {
+ src = fetchFromGitHub {
+ sha256 = "07m2wf2gqyya95b65gawrnr4pvc9jyzmg6h8sinzgxlpskz93wwc";
+ rev = "39053e8896eedd7b3e8a9e9a9ffd80f1fc6ceb16";
+ repo = "reaper";
+ owner = "gillesdegottex";
+ };
+ meta = with stdenv.lib; {
+ license = licenses.asl20;
+ };
+ };
+
+ libqaudioextra = {
+ src = fetchFromGitHub {
+ sha256 = "17pvlij8cc4lwzf6f1cnygj3m3ci6xfa3lv5bgcr5i1gzyjxqpq1";
+ rev = "b7d187cd9a1fd76ea94151e2e02453508d0151d3";
+ repo = "libqaudioextra";
+ owner = "gillesdegottex";
+ };
+ meta = with stdenv.lib; {
+ license = licenses.gpl3Plus;
+ };
+ };
+
+in stdenv.mkDerivation {
name = "dfasma-${version}";
src = fetchFromGitHub {
- sha256 = "0xqam5hm4kvfksdlyz1rviijv386fk3px4lhz6glfsimbcvvzl0r";
- rev = "v${version}";
+ inherit sha256 rev;
repo = "dfasma";
owner = "gillesdegottex";
};
+ buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
+
+ postPatch = ''
+ substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
+ cp -Rv "${reaperFork.src}"/* external/REAPER
+ cp -Rv "${libqaudioextra.src}"/* external/libqaudioextra
+ '';
+
+ configurePhase = ''
+ qmake PREFIX=$out PREFIXSHORTCUT=$out dfasma.pro
+ '';
+
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
inherit version;
description = "Analyse and compare audio files in time and frequency";
@@ -23,25 +65,8 @@ stdenv.mkDerivation {
amplitude, this software does not aim to be an audio editor.
'';
homepage = http://gillesdegottex.github.io/dfasma/;
- license = licenses.gpl3Plus;
- platforms = with platforms; linux;
+ license = [ licenses.gpl3Plus reaperFork.meta.license ];
+ platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
-
- buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
-
- postPatch = ''
- substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
- '';
-
- configurePhase = ''
- qmake DESTDIR=$out/bin dfasma.pro
- '';
-
- enableParallelBuilding = true;
-
- postInstall = ''
- install -Dm644 distrib/dfasma.desktop $out/share/applications/dfasma.desktop
- install -Dm644 icons/dfasma.png $out/share/pixmaps/dfasma.png
- '';
}
diff --git a/pkgs/applications/audio/foo-yc20/default.nix b/pkgs/applications/audio/foo-yc20/default.nix
index 025ca594dffe..4ccbb4256127 100644
--- a/pkgs/applications/audio/foo-yc20/default.nix
+++ b/pkgs/applications/audio/foo-yc20/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20";
homepage = https://github.com/sampov2/foo-yc20;
license = "BSD";
- maintainers = stdenv.lib.maintainers.magnetophon;
+ maintainers = [ stdenv.lib.maintainers.magnetophon ];
platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/applications/audio/keyfinder-cli/default.nix b/pkgs/applications/audio/keyfinder-cli/default.nix
index d5de42f6a6ef..dc90aeda47df 100644
--- a/pkgs/applications/audio/keyfinder-cli/default.nix
+++ b/pkgs/applications/audio/keyfinder-cli/default.nix
@@ -1,16 +1,22 @@
-{ stdenv, fetchFromGitHub, libav, libkeyfinder_0_11 }:
+{ stdenv, fetchFromGitHub, libav, libkeyfinder }:
-let version = "20150201"; in
+let version = "2015-09-13"; in
stdenv.mkDerivation rec {
name = "keyfinder-cli-${version}";
src = fetchFromGitHub {
repo = "keyfinder-cli";
owner = "EvanPurkhiser";
- rev = "e8a20e73f8a465a6c3c9e71dabf4b636244a9b0c";
- sha256 = "0x198ijr6wgzq24642s4pz5zxn4gvcc7dxmb6d1bfn3dwzi3j8lp";
+ rev = "8579282f15ab3ebad937fed398ec5c88843be03d";
+ sha256 = "0jylykigxmsqvdny265k58vpxa4cqs1hq2f7mph1nl3apfx2shrh";
};
+ buildInputs = [ libav libkeyfinder ];
+
+ makeFlagsArray = "PREFIX=$(out)";
+
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
inherit version;
inherit (src.meta) homepage;
@@ -21,13 +27,7 @@ stdenv.mkDerivation rec {
used to estimate the musical key of many different audio formats.
'';
license = licenses.gpl3Plus;
- platforms = with platforms; linux;
+ platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
-
- buildInputs = [ libav libkeyfinder_0_11 ];
-
- makeFlagsArray = "PREFIX=$(out)";
-
- enableParallelBuilding = true;
}
diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix
new file mode 100644
index 000000000000..704f3f01c00e
--- /dev/null
+++ b/pkgs/applications/audio/renoise/default.nix
@@ -0,0 +1,61 @@
+{ stdenv, lib, requireFile, demo, fetchurl, libX11, libXext, libXcursor, libXrandr, libjack2, alsaLib, ... }:
+
+stdenv.mkDerivation rec {
+ name = "renoise";
+
+ buildInputs = [ libX11 libXext libXcursor libXrandr alsaLib libjack2 ];
+
+ src =
+ if builtins.currentSystem == "x86_64-linux" then
+ if demo then
+ fetchurl {
+ url = "http://files.renoise.com/demo/Renoise_3_0_1_Demo_x86_64.tar.bz2";
+ sha256 = "1q7f94wz2dbz659kpp53a3n1qyndsk0pkb29lxdff4pc3ddqwykg";
+ }
+ else
+ requireFile {
+ url = "http://backstage.renoise.com/frontend/app/index.html#/login";
+ name = "rns_3_0_1_reg_x86_64.tar.gz";
+ sha256 = "1swax2jz0gswdpzz8alwjfd8rhigc2yfspj7p8wvdvylqrf7n8q7";
+ }
+ else if builtins.currentSystem == "i686-linux" then
+ if demo then
+ fetchurl {
+ url = "http://files.renoise.com/demo/Renoise_3_0_1_Demo_x86.tar.bz2";
+ sha256 = "0dgqvib4xh2yhgh2wajj11wsb6xiiwgfkhyz32g8vnyaij5q8f58";
+ }
+ else
+ requireFile {
+ url = "http://backstage.renoise.com/frontend/app/index.html#/login";
+ name = "rns_3_0_1_reg_x86.tar.gz";
+ sha256 = "1swax2jz0gswdpzz8alwjfd8rhigc2yfspj7p8wvdvylqrf7n8q7";
+ }
+ else throw "platform is not suppored by Renoise";
+
+ installPhase = ''
+ cp -r Resources $out
+
+ mkdir -p $out/lib/
+
+ mv $out/AudioPluginServer* $out/lib/
+
+ cp renoise $out/renoise
+
+ for path in ${toString buildInputs}; do
+ ln -s $path/lib/*.so* $out/lib/
+ done
+
+ ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/
+
+ mkdir $out/bin
+ ln -s $out/renoise $out/bin/renoise
+
+ patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --set-rpath $out/lib $out/renoise
+ '';
+
+ meta = {
+ description = "modern tracker-based DAW";
+ homepage = http://www.renoise.com/;
+ license = stdenv.lib.licenses.unfree;
+ };
+}
diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix
index 943379890552..457d8c4b0caa 100644
--- a/pkgs/applications/display-managers/lightdm/default.nix
+++ b/pkgs/applications/display-managers/lightdm/default.nix
@@ -1,30 +1,31 @@
{ stdenv, fetchurl, pam, pkgconfig, libxcb, glib, libXdmcp, itstool, libxml2
-, intltool, x11, libxklavier, libgcrypt
+, intltool, x11, libxklavier, libgcrypt, libaudit
, qt4 ? null, qt5 ? null
}:
let
- ver_branch = "1.14";
- version = "1.14.2";
+ ver_branch = "1.16";
+ version = "1.16.2";
in
stdenv.mkDerivation rec {
name = "lightdm-${version}";
src = fetchurl {
url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz";
- sha256 = "18dvipdkp6hc1hysyiwpd5nwq6db3mg98rwi3am2ly3hk2bpic18";
+ sha256 = "062jj21bjrl29mk66lpihwhrff038h2wny3p6b5asacf2mklf0hq";
};
patches = [ ./fix-paths.patch ];
buildInputs = [
pkgconfig pam libxcb glib libXdmcp itstool libxml2 intltool libxklavier libgcrypt
- qt4
+ qt4 libaudit
] ++ stdenv.lib.optional (qt5 != null) qt5.base;
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
+ "--disable-tests"
] ++ stdenv.lib.optional (qt4 != null) "--enable-liblightdm-qt"
++ stdenv.lib.optional ((qt5.base or null) != null) "--enable-liblightdm-qt5";
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index c32ab32e9e95..4de862b0254b 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -16,11 +16,11 @@ let
};
in stdenv.mkDerivation rec {
name = "atom-${version}";
- version = "1.0.10";
+ version = "1.0.4";
src = fetchurl {
url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb";
- sha256 = "16rbp76c46n24a9a3cygg94bx6y7j038h34w4qr7j24aiy5bfzwv";
+ sha256 = "0jki2ca12mazvszy05xc7zy8nfpavl0rnzcyksvvic32l3w2yxj7";
name = "${name}.deb";
};
diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix
index 750234b6399f..53b7b5750a04 100644
--- a/pkgs/applications/editors/codeblocks/default.nix
+++ b/pkgs/applications/editors/codeblocks/default.nix
@@ -23,6 +23,10 @@ stdenv.mkDerivation rec {
configureFlags = [ "--enable-pch=no" ]
++ optional contribPlugins "--with-contrib-plugins";
+ # Fix boost 1.59 compat
+ # Try removing in the next version
+ CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED";
+
meta = with stdenv.lib; {
maintainers = [ maintainers.linquize ];
platforms = platforms.all;
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 6f09aa481e1d..9d85c05206a8 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -127,6 +127,29 @@ rec {
};
};
+ bytecode-outline = buildEclipsePlugin rec {
+ name = "bytecode-outline-${version}";
+ version = "2.4.3";
+
+ srcFeature = fetchurl {
+ url = "http://andrei.gmxhome.de/eclipse/features/de.loskutov.BytecodeOutline.feature_${version}.jar";
+ sha256 = "0imhwp73gxy1y5d5gpjgd05ywn0xg3vqc5980wcx3fd51g4ifc67";
+ };
+
+ srcPlugin = fetchurl {
+ url = "http://dl.bintray.com/iloveeclipse/plugins/de.loskutov.BytecodeOutline_${version}.jar";
+ sha256 = "0230i88mvvxhn11m9c5mv3494zhh1xkxyfyva9qahck0wbqwpzkw";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = http://andrei.gmxhome.de/bytecode/;
+ description = "Shows disassembled bytecode of current java editor or class file";
+ license = licenses.bsd2;
+ platforms = platforms.all;
+ maintainers = [ maintainers.rycee ];
+ };
+ };
+
cdt = buildEclipseUpdateSite rec {
name = "cdt-${version}";
version = "8.7.0";
@@ -148,12 +171,12 @@ rec {
checkstyle = buildEclipseUpdateSite rec {
name = "checkstyle-${version}";
- version = "6.5.0.201504121610";
+ version = "6.9.0.201508291549";
src = fetchzip {
stripRoot = false;
- url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.5.0/net.sf.eclipsecs-updatesite_6.5.0.201504121610-bin.zip";
- sha256 = "1zikpkss0c3l460ipvznp22kpak8w31n7k6yk41nc1w49zflvcf0";
+ url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.9.0/net.sf.eclipsecs-updatesite_${version}-bin.zip";
+ sha256 = "0r6lfbyhqcwa628i6wjp9d6mfp4jnc46bmwp9j7v02m79f8wx74g";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/editors/emacs-modes/color-theme-solarized/default.nix b/pkgs/applications/editors/emacs-modes/color-theme-solarized/default.nix
index 35f9bd3ceb2a..9a0f6855567c 100644
--- a/pkgs/applications/editors/emacs-modes/color-theme-solarized/default.nix
+++ b/pkgs/applications/editors/emacs-modes/color-theme-solarized/default.nix
@@ -1,12 +1,14 @@
-{stdenv, fetchgit, emacs, colorTheme}:
-
+{stdenv, fetchzip, emacs, colorTheme}:
+let
+ commit = "412713a0fcedd520d208a7b783fea03d710bcc61";
+in
stdenv.mkDerivation rec {
- name = "color-theme-6.5.5";
+ name = "color-theme-solarized-1.0.0";
- src = fetchgit {
- url = https://github.com/sellout/emacs-color-theme-solarized.git;
- rev = "6a2c7ca0181585858e6e8054cb99db837e2ef72f";
- sha256 = "3c46a3d66c75ec4456209eeafdb03282148b289b12e8474f6a8962f3894796e8";
+ src = fetchzip {
+
+ url = "https://github.com/sellout/emacs-color-theme-solarized/archive/${commit}.zip";
+ sha256 = "1xd2yk7p39zxgcf91s80pqknzdxw9d09cppjb87g7ihj6f0wxqjv";
};
buildInputs = [ emacs ];
@@ -25,6 +27,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Precision colors for machines and people";
homepage = http://ethanschoonover.com/solarized;
+ maintainer = "Samuel Rivas ";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/applications/editors/emacs-modes/erlang/default.nix b/pkgs/applications/editors/emacs-modes/erlang/default.nix
new file mode 100644
index 000000000000..84a52d169a3b
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/erlang/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, erlang }:
+
+stdenv.mkDerivation {
+
+ name = "erlang-mode-${erlang.version}";
+
+ buildInputs = [ ];
+
+ inherit erlang;
+
+ buildCommand = ''
+ mkdir -p "$out/share/emacs/site-lisp"
+ cp "$erlang/lib/erlang/lib/tools"*/emacs/*.el $out/share/emacs/site-lisp/
+ '';
+
+ # emacs highlighting */
+
+ meta = with stdenv.lib; {
+ homepage = "http://github.com/erlang/otp";
+ description = "Erlang mode for Emacs";
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.samuelrivas ];
+ };
+}
diff --git a/pkgs/applications/editors/emacs-modes/ido-ubiquitous/default.nix b/pkgs/applications/editors/emacs-modes/ido-ubiquitous/default.nix
new file mode 100644
index 000000000000..3cc8156337e0
--- /dev/null
+++ b/pkgs/applications/editors/emacs-modes/ido-ubiquitous/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, emacs }:
+
+let
+ version = "3.6-4-gb659bf8";
+in
+stdenv.mkDerivation {
+ name = "ido-ubiquitous-${version}";
+
+ src = fetchFromGitHub {
+ owner = "DarwinAwardWinner";
+ repo = "ido-ubiquitous";
+ rev = version;
+ sha256 = "06r8qpfr60gc673w881m0nplj91b6bfw77bxgl6irz1z9bp7cc4y";
+ };
+
+ buildInputs = [ emacs ];
+
+ buildPhase = ''
+ emacs -L . --batch -f batch-byte-compile *.el
+ '';
+
+ installPhase = ''
+ install -d $out/share/emacs/site-lisp
+ install *.el *.elc $out/share/emacs/site-lisp
+ '';
+}
diff --git a/pkgs/applications/editors/emacs-modes/ocaml/default.nix b/pkgs/applications/editors/emacs-modes/ocaml/default.nix
index 9e4496ff1a48..7ed6355f9815 100644
--- a/pkgs/applications/editors/emacs-modes/ocaml/default.nix
+++ b/pkgs/applications/editors/emacs-modes/ocaml/default.nix
@@ -11,7 +11,8 @@ in stdenv.mkDerivation {
# a quick configure to get the Makefile generated. Since
# we do not build the ocaml itself, we don't really
# need it to support any features.
- configureFlags = [ "-no-tk" "-no-curses" "-no-pthread" ];
+ configureFlags = (with stdenv.lib; optional (!(versionAtLeast version "4.02")) "-no-tk") ++
+ [ "-no-curses" "-no-pthread" ];
buildInputs = [ emacs ];
dontBuild = true;
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index e394ae4d6a38..e2889abb913d 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -273,25 +273,25 @@ in
pycharm-community = buildPycharm rec {
name = "pycharm-community-${version}";
- version = "4.5.3";
- build = "141.1899";
+ version = "4.5.4";
+ build = "141.2569";
description = "PyCharm Community Edition";
license = stdenv.lib.licenses.asl20;
src = fetchurl {
- url = "https://download.jetbrains.com/python/${name}.tar.gz";
- sha256 = "13f3mp7gcl27fikxjlwk7n1gyxa46q0wfgniang4knb596wlfli0";
+ url = "https://download-cf.jetbrains.com/python/${name}.tar.gz";
+ sha256 = "0a2208rjcvcm9dww317clwiil3ddza3qq9wqkvr0rrcfp1739pbb";
};
};
pycharm-professional = buildPycharm rec {
name = "pycharm-professional-${version}";
- version = "4.5.3";
- build = "141.1899";
+ version = "4.5.4";
+ build = "141.2569";
description = "PyCharm Professional Edition";
license = stdenv.lib.licenses.unfree;
src = fetchurl {
- url = "https://download.jetbrains.com/python/${name}.tar.gz";
- sha256 = "00b66fy841vjm54n2fby5wf7y8ihihqgydr6329iv9p5s0mgzh2s";
+ url = "https://download-cf.jetbrains.com/python/${name}.tar.gz";
+ sha256 = "1dy64myih92kxmi6h9y142dbmmwwphs2n3vswyg53881g5i0lfhd";
};
};
diff --git a/pkgs/applications/editors/jedit/default.nix b/pkgs/applications/editors/jedit/default.nix
index f66ce799d26b..11322e8240c2 100644
--- a/pkgs/applications/editors/jedit/default.nix
+++ b/pkgs/applications/editors/jedit/default.nix
@@ -1,11 +1,7 @@
-{ stdenv, fetchurl, ant, jdk, commonsBsf, commonsLogging }:
+{ stdenv, fetchurl, ant, jdk, commonsBsf, commonsLogging, bsh }:
let
version = "5.2.0";
- bsh = fetchurl {
- url = http://www.beanshell.org/bsh-2.0b5.jar;
- sha256 = "0p2sxrpzd0vsk11zf3kb5h12yl1nq4yypb5mpjrm8ww0cfaijck2";
- };
bcpg = fetchurl {
url = http://central.maven.org/maven2/org/bouncycastle/bcpg-jdk16/1.46/bcpg-jdk16-1.46.jar;
sha256 = "16xhmwks4l65m5x150nd23y5lyppha9sa5fj65rzhxw66gbli82d";
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index cd7db6bb82e3..fd4f13ab6500 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -1,6 +1,9 @@
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
# but I have gvim with python support now :) - Marc
-args@{pkgs, source ? "default", ...}: with args;
+args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext
+, composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby
+, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
+, libICE, ... }: with args;
let inherit (args.composableDerivation) composableDerivation edf;
diff --git a/pkgs/applications/editors/vim/qvim.nix b/pkgs/applications/editors/vim/qvim.nix
index 482e59833b35..0e0b6fc8e50d 100644
--- a/pkgs/applications/editors/vim/qvim.nix
+++ b/pkgs/applications/editors/vim/qvim.nix
@@ -1,4 +1,7 @@
-args@{...}: with args;
+args@{ fetchgit, stdenv, ncurses, pkgconfig, gettext
+, composableDerivation, lib, config, python, perl, tcl, ruby, qt4
+, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
+, libICE, ... }: with args;
let tag = "20140827";
sha256 = "02adf2212872db3c5d133642d2c12fbfc28b506e4c0c42552e3d079756f63f65";
diff --git a/pkgs/applications/editors/yi/wrapper.nix b/pkgs/applications/editors/yi/wrapper.nix
index a4dc3fe367ad..916f296b3fcc 100644
--- a/pkgs/applications/editors/yi/wrapper.nix
+++ b/pkgs/applications/editors/yi/wrapper.nix
@@ -1,6 +1,3 @@
-# Note: this relies on dyre patched for NIX_GHC which is done in
-# haskell-ng only.
-#
# To use this for hacking of your Yi config file, drop into a shell
# with env attribute.
{ stdenv, makeWrapper
diff --git a/pkgs/applications/graphics/djview/default.nix b/pkgs/applications/graphics/djview/default.nix
index 4ded807cb29a..e5c49846b23c 100644
--- a/pkgs/applications/graphics/djview/default.nix
+++ b/pkgs/applications/graphics/djview/default.nix
@@ -1,27 +1,29 @@
-{stdenv, fetchurl, djvulibre, qt4, pkgconfig }:
+{ stdenv, fetchurl, pkgconfig, djvulibre, qt4, xorg, libtiff }:
+let
+ qt = qt4;
+ # TODO: qt = qt5.base; # should work but there's a mysterious "-silent" error
+in
stdenv.mkDerivation rec {
- name = "djview-4.8";
- src = fetchurl {
- url = "mirror://sourceforge/djvu/${name}.tar.gz";
- sha256 = "17y8jvbvj98h25qwsr93v24x75famv8d0jbb0h46xjj555y6wx4c";
- };
-
- buildInputs = [djvulibre qt4];
+ name = "djview-4.10.3";
+ src = fetchurl {
+ url = "mirror://sourceforge/djvu/${name}.tar.gz";
+ sha256 = "09dbws0k8giizc0xqpad8plbyaply8x1pjc2k3207v2svk6hxf2h";
+ };
nativeBuildInputs = [ pkgconfig ];
- patches = [ ./djview4-qt-4.8.patch ];
+ buildInputs = [ djvulibre qt xorg.libXt libtiff ];
passthru = {
mozillaPlugin = "/lib/netscape/plugins";
};
- meta = {
- homepage = http://djvu.sourceforge.net/djview4.html;
- description = "A new portable DjVu viewer and browser plugin";
- license = stdenv.lib.licenses.gpl2;
- inherit (qt4.meta) platforms;
- maintainers = [ stdenv.lib.maintainers.urkud ];
- };
+ meta = with stdenv.lib; {
+ homepage = http://djvu.sourceforge.net/djview4.html;
+ description = "A portable DjVu viewer and browser plugin";
+ license = licenses.gpl2;
+ inherit (qt.meta) platforms;
+ maintainers = [ maintainers.urkud ];
+ };
}
diff --git a/pkgs/applications/graphics/djview/djview4-qt-4.8.patch b/pkgs/applications/graphics/djview/djview4-qt-4.8.patch
deleted file mode 100644
index ce3694197f60..000000000000
--- a/pkgs/applications/graphics/djview/djview4-qt-4.8.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Origin: OpenSUSE
-Index: djview-4.8/src/qdjvuwidget.cpp
-===================================================================
---- djview-4.8.orig/src/qdjvuwidget.cpp
-+++ djview-4.8/src/qdjvuwidget.cpp
-@@ -153,7 +153,7 @@ all_numbers(const char *s)
- }
-
- template static inline void
--swap(T& x, T& y)
-+myswap(T& x, T& y)
- {
- T tmp;
- tmp = x;
-@@ -173,11 +173,11 @@ ksmallest(T *v, int n, int k)
- /* Sort v[lo], v[m], v[hi] by insertion */
- m = (lo+hi)/2;
- if (v[lo]>v[m])
-- swap(v[lo],v[m]);
-+ myswap(v[lo],v[m]);
- if (v[m]>v[hi]) {
-- swap(v[m],v[hi]);
-+ myswap(v[m],v[hi]);
- if (v[lo]>v[m])
-- swap(v[lo],v[m]);
-+ myswap(v[lo],v[m]);
- }
- /* Extract pivot, place sentinel */
- pivot = v[m];
-@@ -191,7 +191,7 @@ ksmallest(T *v, int n, int k)
- do ++l; while (v[l]pivot);
- if (l < h) {
-- swap(v[l],v[h]);
-+ myswap(v[l],v[h]);
- goto loop;
- }
- /* Finish up */
diff --git a/pkgs/applications/graphics/graphicsmagick/default.nix b/pkgs/applications/graphics/graphicsmagick/default.nix
index 536249e70a60..95cfcaef01a2 100644
--- a/pkgs/applications/graphics/graphicsmagick/default.nix
+++ b/pkgs/applications/graphics/graphicsmagick/default.nix
@@ -2,14 +2,14 @@
, libjpeg, libpng, libtiff, libxml2, zlib, libtool, xz
, libX11, quantumdepth ? 8}:
-let version = "1.3.18"; in
+let version = "1.3.21"; in
stdenv.mkDerivation {
name = "graphicsmagick-${version}";
src = fetchurl {
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.xz";
- sha256 = "1axh4j2jr3l92dan15b2nmx9da4l7i0rcz9b5bvfd4q742zfwj7x";
+ sha256 = "07rwpxy62r9m4r2cg6yll2nr698mxyvbji8vgsivcxhpk56k0ich";
};
configureFlags = "--enable-shared --with-quantum-depth=" + toString quantumdepth;
diff --git a/pkgs/applications/graphics/photoqt/default.nix b/pkgs/applications/graphics/photoqt/default.nix
index 2d41cfe51891..7ae6d6e050fa 100644
--- a/pkgs/applications/graphics/photoqt/default.nix
+++ b/pkgs/applications/graphics/photoqt/default.nix
@@ -1,21 +1,30 @@
-{ stdenv, fetchurl, cmake, qt5, exiv2, graphicsmagick }:
+{ stdenv, fetchurl, cmake, makeWrapper, qt5, exiv2, graphicsmagick }:
let
- version = "1.2";
+ version = "1.3";
+ qmlPath = stdenv.lib.makeSearchPath "lib/qt5/qml/" [
+ qt5.quickcontrols
+ qt5.declarative
+ qt5.multimedia
+ ];
in
stdenv.mkDerivation rec {
name = "photoqt-${version}";
src = fetchurl {
url = "http://photoqt.org/pkgs/photoqt-${version}.tar.gz";
- sha256 = "1dnnj2h3j517hcbjxlzk035fis44wdmqq7dvhwpmq1rcr0v32aaa";
+ sha256 = "0j2kvxfb5pd9abciv161nkcsyam6n8kfqs8ymwj2mxiqflwbmfl1";
};
- buildInputs = [ cmake qt5.base qt5.tools exiv2 graphicsmagick ];
+ buildInputs = [ cmake makeWrapper qt5.base qt5.tools exiv2 graphicsmagick ];
preConfigure = ''
export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick"
'';
+ postInstall = ''
+ wrapProgram $out/bin/photoqt --set QML2_IMPORT_PATH "${qmlPath}"
+ '';
+
meta = {
homepage = "http://photoqt.org/";
description = "Simple, yet powerful and good looking image viewer";
diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix
index 2591c3f7ffb8..ba95445a50a2 100644
--- a/pkgs/applications/graphics/simple-scan/default.nix
+++ b/pkgs/applications/graphics/simple-scan/default.nix
@@ -1,12 +1,12 @@
-{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb, libxml2
-, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }:
+{ stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb
+, libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }:
-let version = "3.17.90"; in
+let version = "3.17.92"; in
stdenv.mkDerivation rec {
name = "simple-scan-${version}";
src = fetchurl {
- sha256 = "0xc3ln97dgvxrwy2qn82k9qvsr5kxksms4igzkivya3xpq2kx85c";
+ sha256 = "0ax4rqqpwcz65nvw8l89npjc5v0g1ik1mb5w3025xlipm7djgybp";
url = "https://launchpad.net/simple-scan/3.17/${version}/+download/${name}.tar.xz";
};
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
+ inherit version;
description = "Simple scanning utility";
longDescription = ''
A really easy way to scan both documents and photos. You can crop out the
@@ -35,7 +36,7 @@ stdenv.mkDerivation rec {
'';
homepage = https://launchpad.net/simple-scan;
license = licenses.gpl3Plus;
- platforms = with platforms; linux;
+ platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/applications/graphics/synfigstudio/default.nix b/pkgs/applications/graphics/synfigstudio/default.nix
index 9fa624435ed4..372c11b5bda5 100644
--- a/pkgs/applications/graphics/synfigstudio/default.nix
+++ b/pkgs/applications/graphics/synfigstudio/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, fetchurl, boost, cairo, fontsConf, gettext, glibmm, gtk, gtkmm
-, libsigcxx, libtool, libxmlxx, pango, pkgconfig, imagemagick
-, intltool
+{ stdenv, fetchurl, boost, cairo, fontsConf, gettext, glibmm, gtk3, gtkmm3
+, libjack2, libsigcxx, libtool, libxmlxx, makeWrapper, mlt-qt5, pango, pkgconfig
+, imagemagick, intltool
}:
let
- version = "0.64.3";
+ version = "1.0.1";
ETL = stdenv.mkDerivation rec {
- name = "ETL-0.04.17";
+ name = "ETL-0.04.19";
src = fetchurl {
- url = "mirror://sourceforge/synfig/${name}.tar.gz";
- sha256 = "0rb9czkgan41q6xlck97kh77g176vjm1wnq620sqky7k2hiahr3s";
+ url = "http://download.tuxfamily.org/synfig/releases/${version}/${name}.tar.gz";
+ sha256 = "1zmqv2fa5zxprza3wbhk5mxjk7491jqshxxai92s7fdiza0nhs91";
};
};
@@ -19,8 +19,8 @@ let
name = "synfig-${version}";
src = fetchurl {
- url = "mirror://sourceforge/synfig/synfig-${version}.tar.gz";
- sha256 = "0p4wqjidb4k3viahck4wzbh777f5ifpivn4vxhxs5fbq8nsvqksh";
+ url = "http://download.tuxfamily.org/synfig/releases/${version}/${name}.tar.gz";
+ sha256 = "0l1f2xwmzds32g46fqwsq7j5qlnfps6944chbv14d3ynzgyyp1i3";
};
configureFlags = [
@@ -28,10 +28,8 @@ let
"--with-boost-libdir=${boost.lib}/lib"
];
- patches = [ ./synfig-cstring.patch ];
-
buildInputs = [
- ETL boost cairo gettext glibmm libsigcxx libtool libxmlxx pango
+ ETL boost cairo gettext glibmm mlt-qt5 libsigcxx libtool libxmlxx pango
pkgconfig
];
};
@@ -40,22 +38,19 @@ stdenv.mkDerivation rec {
name = "synfigstudio-${version}";
src = fetchurl {
- url = "mirror://sourceforge/synfig/${name}.tar.gz";
- sha256 = "1li3ac8qvg25h9fgym0zywnq5bg3sgbv162xs4c6pwksn75i6gsv";
+ url = "http://download.tuxfamily.org/synfig/releases/${version}/${name}.tar.gz";
+ sha256 = "0jfa946rfh0dbagp18zknlj9ffrd4h45xcy2dh2vlhn6jdm08yfi";
};
buildInputs = [
- ETL boost cairo gettext glibmm gtk gtkmm imagemagick intltool
- intltool libsigcxx libtool libxmlxx pkgconfig synfig
+ ETL boost cairo gettext glibmm gtk3 gtkmm3 imagemagick intltool
+ libjack2 libsigcxx libtool libxmlxx makeWrapper mlt-qt5 pkgconfig
+ synfig
];
- configureFlags = [
- "--with-boost=${boost.dev}"
- "--with-boost-libdir=${boost.lib}/lib"
- ];
-
- preBuild = ''
- export FONTCONFIG_FILE=${fontsConf}
+ postInstall = ''
+ wrapProgram "$out/bin/synfigstudio" \
+ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
'';
enableParallelBuilding = true;
diff --git a/pkgs/applications/graphics/synfigstudio/synfig-cstring.patch b/pkgs/applications/graphics/synfigstudio/synfig-cstring.patch
deleted file mode 100644
index 51eb77042161..000000000000
--- a/pkgs/applications/graphics/synfigstudio/synfig-cstring.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-http://www.synfig.org/issues/thebuggenie/synfig/issues/438
---- a/src/modules/mod_png/trgt_png.cpp
-+++ b/src/modules/mod_png/trgt_png.cpp
-@@ -39,6 +39,7 @@
- #include
- #include
- #include
-+#include
-
- #endif
-
-
diff --git a/pkgs/applications/graphics/xaos/default.nix b/pkgs/applications/graphics/xaos/default.nix
index cacefc9bcc12..7e01d3847d56 100644
--- a/pkgs/applications/graphics/xaos/default.nix
+++ b/pkgs/applications/graphics/xaos/default.nix
@@ -1,4 +1,4 @@
-a :
+a @ { libXt, libX11, libXext, xextproto, xproto, gsl, aalib, zlib, intltool, gettext, perl, ... }:
let
fetchurl = a.fetchurl;
diff --git a/pkgs/applications/kde-apps-15.04/packages.sh b/pkgs/applications/kde-apps-15.04/packages.sh
index 875141341a7c..a18324e513f1 100755
--- a/pkgs/applications/kde-apps-15.04/packages.sh
+++ b/pkgs/applications/kde-apps-15.04/packages.sh
@@ -15,7 +15,7 @@ $(nix-build -A autonix.manifest) \
"${KDE_MIRROR}/stable/applications/15.04.3/" \
"$@" -A '*.tar.xz'
-AUTONIX_DEPS_KF5=${AUTONIX_DEPS_KF5:-"$(nix-build -A haskellngPackages.autonix-deps-kf5)/bin/kf5-deps"}
+AUTONIX_DEPS_KF5=${AUTONIX_DEPS_KF5:-"$(nix-build -A haskellPackages.autonix-deps-kf5)/bin/kf5-deps"}
$AUTONIX_DEPS_KF5 manifest.json
diff --git a/pkgs/applications/misc/audio/sox/0001-Check-for-minimum-size-sphere-headers.patch b/pkgs/applications/misc/audio/sox/0001-Check-for-minimum-size-sphere-headers.patch
deleted file mode 100644
index f01fec390d43..000000000000
--- a/pkgs/applications/misc/audio/sox/0001-Check-for-minimum-size-sphere-headers.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 55e33019afcb3256cccedf606548b86816f6da59 Mon Sep 17 00:00:00 2001
-From: Chris Bagwell
-Date: Sat, 13 Dec 2014 12:48:37 -0600
-Subject: [PATCH 1/2] Check for minimum size sphere headers
-
----
- src/sphere.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/src/sphere.c b/src/sphere.c
-index 479a552..a3fd1c6 100644
---- a/src/sphere.c
-+++ b/src/sphere.c
-@@ -47,6 +47,11 @@ static int start_read(sox_format_t * ft)
-
- /* Determine header size, and allocate a buffer large enough to hold it. */
- sscanf(fldsval, "%lu", &header_size_ul);
-+ if (header_size_ul < 16) {
-+ lsx_fail_errno(ft, SOX_EHDR, "Error reading Sphere header");
-+ return (SOX_EOF);
-+ }
-+
- buf = lsx_malloc(header_size = header_size_ul);
-
- /* Skip what we have read so far */
---
-2.1.0
-
diff --git a/pkgs/applications/misc/audio/sox/0002-More-checks-for-invalid-MS-ADPCM-blocks.patch b/pkgs/applications/misc/audio/sox/0002-More-checks-for-invalid-MS-ADPCM-blocks.patch
deleted file mode 100644
index 72c2d765a945..000000000000
--- a/pkgs/applications/misc/audio/sox/0002-More-checks-for-invalid-MS-ADPCM-blocks.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From ebb64cddde59ecc9cedf3741ce2337c72148cc0c Mon Sep 17 00:00:00 2001
-From: Chris Bagwell
-Date: Sat, 13 Dec 2014 12:49:55 -0600
-Subject: [PATCH 2/2] More checks for invalid MS ADPCM blocks.
-
-If block doesn't exacty match blockAlign then do not allow
-number of samples in invalid size block to ever be more than
-what WAV header defined as samplesPerBlock.
----
- src/wav.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/wav.c b/src/wav.c
-index 61d5908..5202556 100644
---- a/src/wav.c
-+++ b/src/wav.c
-@@ -168,7 +168,7 @@ static unsigned short AdpcmReadBlock(sox_format_t * ft)
- /* work with partial blocks. Specs say it should be null */
- /* padded but I guess this is better than trailing quiet. */
- samplesThisBlock = lsx_ms_adpcm_samples_in((size_t)0, (size_t)ft->signal.channels, bytesRead, (size_t)0);
-- if (samplesThisBlock == 0)
-+ if (samplesThisBlock == 0 || samplesThisBlock > wav->samplesPerBlock)
- {
- lsx_warn("Premature EOF on .wav input file");
- return 0;
---
-2.1.0
-
diff --git a/pkgs/applications/misc/audio/sox/default.nix b/pkgs/applications/misc/audio/sox/default.nix
index fa6e53bcf972..9a30e4669eed 100644
--- a/pkgs/applications/misc/audio/sox/default.nix
+++ b/pkgs/applications/misc/audio/sox/default.nix
@@ -11,20 +11,13 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "sox-14.4.1";
+ name = "sox-14.4.2";
src = fetchurl {
url = "mirror://sourceforge/sox/${name}.tar.gz";
- sha256 = "16x8gykfjdhxg0kdxwzcwgwpm5caa08y2mx18siqsq0ywmpjr34s";
+ sha256 = "0v2znlxkxxcd3f48hf3dx9pq7i6fdhb62kgj7wv8xggz8f35jpxl";
};
- patches = [
- # Patches for CVE-2014-8145, found via RedHat bug 1174792. It was not
- # clear whether these address a NULL deref and a division by zero.
- ./0001-Check-for-minimum-size-sphere-headers.patch
- ./0002-More-checks-for-invalid-MS-ADPCM-blocks.patch
- ];
-
buildInputs =
optional (enableAlsa && stdenv.isLinux) alsaLib ++
optional enableLibao libao ++
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index abea6201e759..5bd9bcf5c49e 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "calibre-${version}";
- version = "2.36.0";
+ version = "2.38.0";
src = fetchurl {
url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz";
- sha256 = "1my7fjj1lc28mhmvb85rcc4c5bwsycs6bgmafbx9agil5bgrbnb2";
+ sha256 = "075axil53djss99fj9drfh5cvxdbjw6z5z5qk53vm13k5pw6bmhn";
};
inherit python;
diff --git a/pkgs/applications/misc/devilspie2/default.nix b/pkgs/applications/misc/devilspie2/default.nix
new file mode 100644
index 000000000000..50ae2b2d15f6
--- /dev/null
+++ b/pkgs/applications/misc/devilspie2/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, intltool, pkgconfig, glib, gtk, lua, libwnck3 }:
+
+stdenv.mkDerivation rec {
+ name = "devilspie2-${version}";
+ version = "0.39";
+
+ src = fetchurl {
+ url = "http://download.savannah.gnu.org/releases/devilspie2/devilspie2_0.39-src.tar.gz";
+ sha256 = "07b74ffc078e5f01525d9da7a1978b4c1a9725b814b344f83a1a203cf4caae09";
+ };
+
+ buildInputs = [ intltool pkgconfig glib gtk lua libwnck3 ];
+
+ patchPhase = ''
+ sed -i -e s@/usr/local@$out@ Makefile
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/man/man1
+ cp bin/devilspie2 $out/bin
+ cp devilspie2.1 $out/share/man/man1
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Devilspie2 is a window matching utility.";
+ longDescription = ''
+ Devilspie2 is a window matching utility, allowing the user to
+ perform scripted actions on windows as they are created. For
+ example you can script a terminal program to always be
+ positioned at a specific screen position, or position a window
+ on a specific workspace.
+ '';
+ homepage = http://www.gusnan.se/devilspie2/;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.ebzzry ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/dfilemanager/default.nix b/pkgs/applications/misc/dfilemanager/default.nix
index 40bb2e8fe568..ba3bd5f0f0de 100644
--- a/pkgs/applications/misc/dfilemanager/default.nix
+++ b/pkgs/applications/misc/dfilemanager/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchgit, cmake, qt5, file, kde5}:
let
- version = "git-2015-06-10";
+ version = "git-2015-07-25";
in
stdenv.mkDerivation rec {
name = "dfilemanager-${version}";
src = fetchgit {
url = "git://git.code.sf.net/p/dfilemanager/code";
- rev = "806a28aa8fed30941a2fd6784c7c9c240bca30e3";
- sha256 = "1k15qzjmqg9ffv4cl809b071dpyckf8jspkhfhpbmfd9wasr0m7i";
+ rev = "99afcde199378eb0d499c49a9e28846c22e27483";
+ sha256 = "1dd21xl24xvxs100j8nzhpaqfqk8srqs92al9c03jmyjlk31s6lf";
};
buildInputs = [ cmake qt5.base qt5.tools qt5.x11extras file kde5.solid];
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://dfilemanager.sourceforge.net/";
description = "File manager written in Qt/C++, it does use one library from kdelibs, the solid lib for easy device handling";
- #license = stdenv.lib.licenses; # license not specified
+ license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.eduarrrd ];
};
diff --git a/pkgs/applications/misc/gpa/default.nix b/pkgs/applications/misc/gpa/default.nix
index 3e737544d186..10b8065c6237 100644
--- a/pkgs/applications/misc/gpa/default.nix
+++ b/pkgs/applications/misc/gpa/default.nix
@@ -1,12 +1,11 @@
{ stdenv, fetchurl, intltool, pkgconfig, gtk, gpgme, libgpgerror, libassuan }:
stdenv.mkDerivation rec {
-
- name = "gpa-0.9.7";
+ name = "gpa-0.9.9";
src = fetchurl {
url = "mirror://gnupg/gpa/${name}.tar.bz2";
- sha256 = "1r8pnvfw66b2m9lhajlarbxx9172c1gzripdij01bawgbrhwp33y";
+ sha256 = "0d235hcqai7m3qb7m9kvr2r4qg4714f87j9fdplwrlz1p4wdfa38";
};
buildInputs = [ intltool pkgconfig gtk gpgme libgpgerror libassuan ];
diff --git a/pkgs/applications/misc/gphoto2/gphotofs.nix b/pkgs/applications/misc/gphoto2/gphotofs.nix
index 32c95ec147bd..1e6d924b63a5 100644
--- a/pkgs/applications/misc/gphoto2/gphotofs.nix
+++ b/pkgs/applications/misc/gphoto2/gphotofs.nix
@@ -1,4 +1,4 @@
-a :
+a @ { libgphoto2, fuse, pkgconfig, glib, libtool, ... } :
let
fetchurl = a.fetchurl;
s = import ./src-info-for-gphotofs.nix;
diff --git a/pkgs/applications/misc/grass/default.nix b/pkgs/applications/misc/grass/default.nix
index 823b6cdf5387..5ff14458840b 100644
--- a/pkgs/applications/misc/grass/default.nix
+++ b/pkgs/applications/misc/grass/default.nix
@@ -1,4 +1,11 @@
-{ config, ... }@a:
+{ config, libXmu, libXext, libXp, libX11, libXt, libSM, libICE, libXpm
+ , libXaw, libXrender
+ , composableDerivation, stdenv, fetchurl
+ , lib, flex, bison, cairo, fontconfig
+ , gdal, zlib, ncurses, gdbm, proj, pkgconfig, swig
+ , blas, liblapack, libjpeg, libpng, mysql, unixODBC, mesa, postgresql, python
+ , readline, sqlite, tcl, tk, libtiff, freetype, makeWrapper, wxGTK, ffmpeg, fftw
+ , wxPython, motif, opendwg }@a:
# You can set gui by exporting GRASS_GUI=..
# see http://grass.itc.it/gdp/html_grass64/g.gui.html
@@ -28,7 +35,7 @@ a.composableDerivation.composableDerivation {} (fix: {
name = "grass-6.4.0RC6";
buildInputs = [
- # gentoos package depends on gmath ?
+ # gentoos package depends on gmath ?
a.pkgconfig
a.flex a.bison a.libXmu a.libXext a.libXp a.libX11 a.libXt a.libSM a.libICE
a.libXpm a.libXaw a.flex a.bison a.gdbm
@@ -72,7 +79,7 @@ a.composableDerivation.composableDerivation {} (fix: {
configureFlags = [ "--with-python=${a.python}/bin/python-config" ];
buildInputs = [a.python a.swig];
};
-
+
}
// edf { name = "_64bit"; feat = "64bit"; }
// wwfp a.ncurses { name = "curses"; }
@@ -119,7 +126,7 @@ a.composableDerivation.composableDerivation {} (fix: {
// wwfp a.unixODBC { name = "odbc"; }
// wwfp a.fftw { name = "fftw"; }
// wwf {
- name = "blas";
+ name = "blas";
enable.configureFlags = [ "--with-blas-libs=${a.blas}/lib" ];
}
// wwf {
diff --git a/pkgs/applications/misc/hello/ex-2/default.nix b/pkgs/applications/misc/hello/ex-2/default.nix
index 8a31c591b29b..bb91c90e2fcf 100644
--- a/pkgs/applications/misc/hello/ex-2/default.nix
+++ b/pkgs/applications/misc/hello/ex-2/default.nix
@@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
sha256 = "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
};
- doCheck = true;
+ doCheck = false;
+
+ separateDebugInfo = true;
meta = {
description = "A program that produces a familiar, friendly greeting";
diff --git a/pkgs/applications/misc/keepassx/2.0.nix b/pkgs/applications/misc/keepassx/2.0.nix
index ff61ea5d0103..6a5ce9fd6043 100644
--- a/pkgs/applications/misc/keepassx/2.0.nix
+++ b/pkgs/applications/misc/keepassx/2.0.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, cmake, libgcrypt, qt4, xlibs, ... }:
stdenv.mkDerivation {
- name = "keepassx2-2.0beta1";
+ name = "keepassx2-2.0beta2";
src = fetchurl {
- url = "https://github.com/keepassx/keepassx/archive/2.0-beta1.tar.gz";
- sha256 = "1wnbk9laixz16lmchr1lnv8m9i6rkxv6slnx8f0fyczx90y97qdw";
+ url = "https://github.com/keepassx/keepassx/archive/2.0-beta2.tar.gz";
+ sha256 = "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q";
};
buildInputs = [ cmake libgcrypt qt4 xlibs.libXtst ];
diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix
index 4bf398609899..e626f3998f9f 100644
--- a/pkgs/applications/misc/khard/default.nix
+++ b/pkgs/applications/misc/khard/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, pkgs, pythonPackages }:
pythonPackages.buildPythonPackage rec {
- version = "0.4.1";
+ version = "0.5.0";
name = "khard-${version}";
namePrefix = "";
src = fetchurl {
url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz";
- sha256 = "09yibjzly711hwpg345n653rz47llvrj4shnlcxd8snzvg8m5gri";
+ sha256 = "0k3pix4zdr5jc323w63kwrfhkvmn5ijnznzfhf6rvqp05lrkyh9x";
};
propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/applications/misc/lxappearance/default.nix b/pkgs/applications/misc/lxappearance/default.nix
index 9295eaabf322..8db606fd6d59 100644
--- a/pkgs/applications/misc/lxappearance/default.nix
+++ b/pkgs/applications/misc/lxappearance/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk }:
stdenv.mkDerivation rec {
- name = "lxappearance-0.5.5";
+ name = "lxappearance-0.6.1";
src = fetchurl{
url = "http://downloads.sourceforge.net/project/lxde/LXAppearance/${name}.tar.xz";
- sha256 = "8cae82e6425ba8a0267774e4d10096df2d91b0597520058331684a5ece068b4c";
+ sha256 = "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9";
};
buildInputs = [ intltool libX11 pkgconfig gtk ];
meta = {
diff --git a/pkgs/applications/misc/mupdf/default.nix b/pkgs/applications/misc/mupdf/default.nix
index 12dbbe6a9aa4..e1807b3aff94 100644
--- a/pkgs/applications/misc/mupdf/default.nix
+++ b/pkgs/applications/misc/mupdf/default.nix
@@ -2,12 +2,12 @@
, libX11, libXext }:
stdenv.mkDerivation rec {
- version = "1.7a";
+ version = "1.7";
name = "mupdf-${version}";
src = fetchurl {
url = "http://mupdf.com/download/archive/${name}-source.tar.gz";
- sha256 = "073xq6kczq331awycvznpc49b22idqzdlw4g9254zi0z07x5y0wc";
+ sha256 = "0hjn1ywxhblqgj63qkp8x7qqjnwsgid3viw8az5i2i26dijmrgfh";
};
buildInputs = [ pkgconfig zlib freetype libjpeg jbig2dec openjpeg libX11 libXext ];
diff --git a/pkgs/applications/misc/playonlinux/default.nix b/pkgs/applications/misc/playonlinux/default.nix
new file mode 100644
index 000000000000..b39eeac68789
--- /dev/null
+++ b/pkgs/applications/misc/playonlinux/default.nix
@@ -0,0 +1,114 @@
+{ stdenv
+, makeWrapper
+, fetchurl
+, wxPython
+, libXmu
+, cabextract
+, gettext
+, glxinfo
+, gnupg1compat
+, icoutils
+, imagemagick
+, netcat
+, p7zip
+, python
+, unzip
+, wget
+, wine
+, xdg-user-dirs
+, xterm
+}:
+
+stdenv.mkDerivation rec {
+ name = "playonlinux-${version}";
+ version = "4.2.9";
+
+ src = fetchurl {
+ url = "https://www.playonlinux.com/script_files/PlayOnLinux/${version}/PlayOnLinux_${version}.tar.gz";
+ sha256 = "89bb0fd7cce8cf598ebf38cad716b8587eaca5b916d54386fb24b3ff66b48624";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ buildInputs =
+ [ wxPython
+ libXmu
+ cabextract
+ gettext
+ glxinfo
+ gnupg1compat
+ icoutils
+ imagemagick
+ netcat
+ p7zip
+ python
+ unzip
+ wget
+ wine
+ xdg-user-dirs
+ xterm
+ ];
+
+ patchPhase = ''
+ PYFILES="python/*.py python/lib/*.py tests/python/*.py"
+ sed -i "s/env python[0-9.]*/python/" $PYFILES
+ sed -i "s/ %F//g" etc/PlayOnLinux.desktop
+ '';
+
+ installPhase = ''
+ install -d $out/share/playonlinux
+ install -d $out/bin
+ cp -r . $out/share/playonlinux/
+
+ echo "#!${stdenv.shell}" > $out/bin/playonlinux
+ echo "$prefix/share/playonlinux/playonlinux \"\$@\"" >> $out/bin/playonlinux
+ chmod +x $out/bin/playonlinux
+
+ install -D -m644 etc/PlayOnLinux.desktop $out/share/applications/playonlinux.desktop
+ '';
+
+ preFixupPhases = [ "preFixupPhase" ];
+
+ preFixupPhase = ''
+ for f in $out/bin/*; do
+ wrapProgram $f \
+ --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath "$out") \
+ --prefix PATH : \
+ ${cabextract}/bin:\
+ ${gettext}/bin:\
+ ${glxinfo}/bin:\
+ ${gnupg1compat}/bin:\
+ ${icoutils}/bin:\
+ ${imagemagick}/bin:\
+ ${netcat}/bin:\
+ ${p7zip}/bin:\
+ ${python}/bin:\
+ ${unzip}/bin:\
+ ${wget}/bin:\
+ ${wine}/bin:\
+ ${xdg-user-dirs}/bin:\
+ ${xterm}/bin
+
+ done
+
+ for f in $out/share/playonlinux/bin/*; do
+ bunzip2 $f
+ done
+ '';
+
+ postFixupPhases = [ "postFixupPhase" ];
+
+ postFixupPhase = ''
+ for f in $out/share/playonlinux/bin/*; do
+ bzip2 $f
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "GUI for managing Windows programs under linux";
+ homepage = https://www.playonlinux.com/;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.a1russell ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/spacefm/default.nix b/pkgs/applications/misc/spacefm/default.nix
index ea7663c24069..01f55498f806 100644
--- a/pkgs/applications/misc/spacefm/default.nix
+++ b/pkgs/applications/misc/spacefm/default.nix
@@ -1,4 +1,4 @@
-{ pkgs, fetchurl, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info , intltool, pkgconfig, makeWrapper, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks }:
+{ pkgs, fetchurl, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info , intltool, pkgconfig, makeWrapper, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:
stdenv.mkDerivation rec {
name = "spacefm-${version}";
diff --git a/pkgs/applications/misc/super_user_spark/default.nix b/pkgs/applications/misc/super_user_spark/default.nix
index 988db35500ba..73a9e343df9b 100644
--- a/pkgs/applications/misc/super_user_spark/default.nix
+++ b/pkgs/applications/misc/super_user_spark/default.nix
@@ -29,5 +29,5 @@ mkDerivation rec {
homepage = "https://github.com/NorfairKing/super-user-spark";
description = "A safe way to never worry about your beautifully configured system again";
platforms = ghc.meta.platforms;
- maintainers = stdenv.lib.maintainers.badi;
+ maintainers = [ stdenv.lib.maintainers.badi ];
}
diff --git a/pkgs/applications/misc/terminal-notifier/default.nix b/pkgs/applications/misc/terminal-notifier/default.nix
index 946556140232..2afebec9ee36 100644
--- a/pkgs/applications/misc/terminal-notifier/default.nix
+++ b/pkgs/applications/misc/terminal-notifier/default.nix
@@ -16,7 +16,11 @@ stdenv.mkDerivation rec {
mkdir -p $out/Applications
mkdir -p $out/bin
cp -r terminal-notifier.app $out/Applications
- ln -s $out/Applications/terminal-notifier.app/Contents/MacOS/terminal-notifier $out/bin/terminal-notifier
+ cat >$out/bin/terminal-notifier < openssl != null;
assert graphicsSupport -> imlib2 != null && (x11 != null || fbcon != null);
-assert mouseSupport -> gpm != null;
+assert mouseSupport -> gpm-ncurses != null;
stdenv.mkDerivation rec {
name = "w3m-0.5.3";
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
buildInputs = [ncurses boehmgc gettext zlib]
++ stdenv.lib.optional sslSupport openssl
- ++ stdenv.lib.optional mouseSupport gpm
+ ++ stdenv.lib.optional mouseSupport gpm-ncurses
++ stdenv.lib.optionals graphicsSupport [imlib2 x11 fbcon];
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
diff --git a/pkgs/applications/networking/cluster/chronos/default.nix b/pkgs/applications/networking/cluster/chronos/default.nix
index 14f5d251240e..596163336f7b 100644
--- a/pkgs/applications/networking/cluster/chronos/default.nix
+++ b/pkgs/applications/networking/cluster/chronos/default.nix
@@ -34,5 +34,6 @@ stdenv.mkDerivation rec {
description = "Fault tolerant job scheduler for Mesos which handles dependencies and ISO8601 based schedules";
maintainers = with maintainers; [ offline ];
platforms = with platforms; unix;
+ broken = true; # doesn't build http://hydra.nixos.org/build/25768319
};
}
diff --git a/pkgs/applications/networking/copy-com/default.nix b/pkgs/applications/networking/copy-com/default.nix
index 7dd2702325b2..968218309ed7 100644
--- a/pkgs/applications/networking/copy-com/default.nix
+++ b/pkgs/applications/networking/copy-com/default.nix
@@ -52,7 +52,7 @@ in stdenv.mkDerivation {
RPATH=${libPaths}:$out/${appdir}
echo "Updating rpaths to $RPATH in:"
- find "$out/${appdir}" -type f -a -perm /0100 \
+ find "$out/${appdir}" -type f -a -perm -0100 \
-print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \;
'';
diff --git a/pkgs/applications/networking/drive/default.nix b/pkgs/applications/networking/drive/default.nix
deleted file mode 100644
index 0af104fa380f..000000000000
--- a/pkgs/applications/networking/drive/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, goPackages, fetchFromGitHub }:
-
-with goPackages;
-
-buildGoPackage rec {
- rev = "4530cf8d59e1047cb1c005a6bd5b14ecb98b9e68";
- name = "drive-${lib.strings.substring 0 7 rev}";
- goPackagePath = "github.com/odeke-em/drive";
- src = fetchFromGitHub {
- inherit rev;
- owner = "odeke-em";
- repo = "drive";
- sha256 = "1y4qlzvgg84mh8l6bhaazzy6bv6dwjcbpm0rxvvc5aknvvh581ps";
- };
-
- subPackages = [ "cmd/drive" ];
-
- buildInputs = [ pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client cli-spinner oauth2 text net ];
-
- dontInstallSrc = true;
-
- meta = with lib; {
- description = "A tiny program to pull or push Google Drive files";
- homepage = https://github.com/odeke-em/drive;
- license = licenses.asl20;
- maintainers = with maintainers; [ bobvanderlinden ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 3fa6fb51ee14..3b157857ff96 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -19,11 +19,11 @@
let
# NOTE: When updating, please also update in current stable, as older versions stop working
- version = "3.8.5";
+ version = "3.8.9";
sha256 =
{
- "x86_64-linux" = "1r0wz2fsx2piasl04qsgwbl88bi0ajr0dm2swbslxwkf789vk18y";
- "i686-linux" = "1dvfgp9dg3frhwmchwa6fyws4im9vgicchfsv0zzflvc7rm9fcig";
+ "x86_64-linux" = "1mdhf57bqi4vihbzv5lz8zk4n576c1qjm7hzcq4f5qvkdsmp5in2";
+ "i686-linux" = "0gighh782jjmlgqgbw2d00a3ri5h3inqdik7v70f1yygvkr7awy8";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
arch =
@@ -101,12 +101,12 @@ in stdenv.mkDerivation {
rm "$out/${appdir}/qt.conf"
rm -fr "$out/${appdir}/plugins"
- find "$out/${appdir}" -type f -a -perm /0100 \
+ find "$out/${appdir}" -type f -a -perm -0100 \
-print -exec patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} {} \;
RPATH=${ldpath}:${gcc.cc}/lib:$out/${appdir}
echo "updating rpaths to: $RPATH"
- find "$out/${appdir}" -type f -a -perm /0100 \
+ find "$out/${appdir}" -type f -a -perm -0100 \
-print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \;
mkdir -p "$out/share/applications"
diff --git a/pkgs/applications/networking/feedreaders/rsstail/default.nix b/pkgs/applications/networking/feedreaders/rsstail/default.nix
index e6f6c162067c..5786d708cd6c 100644
--- a/pkgs/applications/networking/feedreaders/rsstail/default.nix
+++ b/pkgs/applications/networking/feedreaders/rsstail/default.nix
@@ -1,29 +1,16 @@
{ stdenv, fetchFromGitHub, cppcheck, libmrss }:
-let version = "2.0"; in
+let version = "2015-09-06"; in
stdenv.mkDerivation rec {
name = "rsstail-${version}";
src = fetchFromGitHub {
- sha256 = "0fbsyl5bdxr2g25ps7kd34sa0mzggklbg4v7qss68gh82zdp16ch";
- rev = "69dc5e30439b89c037aa49c5af861f28df607c72";
+ sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx";
+ rev = "16636539e4cc75dafbfa7f05539769be7dad4b66";
repo = "rsstail";
owner = "flok99";
};
- meta = with stdenv.lib; {
- inherit version;
- description = "Monitor RSS feeds for new entries";
- longDescription = ''
- RSSTail is more or less an RSS reader: it monitors an RSS feed and if it
- detects a new entry it'll emit only that new entry.
- '';
- homepage = http://www.vanheusden.com/rsstail/;
- license = licenses.gpl2Plus;
- platforms = with platforms; linux;
- maintainers = with maintainers; [ nckx ];
- };
-
buildInputs = [ libmrss ]
++ stdenv.lib.optional doCheck cppcheck;
@@ -35,4 +22,17 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
doCheck = true;
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Monitor RSS feeds for new entries";
+ longDescription = ''
+ RSSTail is more or less an RSS reader: it monitors an RSS feed and if it
+ detects a new entry it'll emit only that new entry.
+ '';
+ homepage = http://www.vanheusden.com/rsstail/;
+ license = licenses.gpl2Plus;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
}
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
index 2e8a28d03c87..51b5df176ccf 100644
--- a/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
-, pkgconfig, xdg_utils, gtk2, sqlite }:
+, pkgconfig, xdg_utils, gtk2, sqlite, pugixml }:
-let version = "3.12.0.2"; in
+let version = "3.14.0"; in
stdenv.mkDerivation {
name = "filezilla-${version}";
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
- sha256 = "038xgvajn0nq1dzw1pac3xwhmil1y17vhadd2hx0vl4lrp16yabs";
+ sha256 = "1zbrsmrqnxzj6cnf2y1sx384nv6c8l3338ynazjfbiqbyfs5lf4j";
};
configureFlags = [
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
buildInputs = [
dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite
- ];
+ pugixml ];
meta = with stdenv.lib; {
homepage = http://filezilla-project.org/;
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
new file mode 100644
index 000000000000..1427cc06ce42
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
@@ -0,0 +1,27 @@
+{ fetchurl, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, json_glib }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ name = "bitlbee-facebook-2015-08-27";
+
+ src = fetchFromGitHub {
+ rev = "094a11b542e2cd8fac4f00fe01870ecd1cb4c062";
+ owner = "jgeboski";
+ repo = "bitlbee-facebook";
+ sha256 = "1dvbl1z6fl3wswvqbs82vkqlggk24dyi8w7cmm5jh1fmaznmwqrl";
+ };
+
+ buildInputs = [ bitlbee autoconf automake libtool pkgconfig glib json_glib ];
+
+ preConfigure = ''
+ export BITLBEE_PLUGINDIR=$out/lib/bitlbee
+ ./autogen.sh
+ '';
+
+ meta = {
+ description = "The Facebook protocol plugin for bitlbee";
+
+ homepage = https://github.com/jgeboski/bitlbee-facebook;
+ license = licenses.gpl2Plus;
+ };
+}
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
index ddaaa35da558..41a698be2907 100644
--- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr, python }:
+{ fetchurl, fetchpatch, stdenv, gnutls, glib, pkgconfig, check, libotr, python }:
with stdenv.lib;
stdenv.mkDerivation rec {
@@ -12,12 +12,21 @@ stdenv.mkDerivation rec {
buildInputs = [ gnutls glib pkgconfig libotr python ]
++ optional doCheck check;
+ patches = [(fetchpatch {
+ url = "https://github.com/bitlbee/bitlbee/commit/34d16d5b4b5265990125894572a90493284358cd.patch";
+ sha256 = "05in9kxabb6s2c1l4b9ry58ppfciwmwzrkaq33df2zv0pr3z7w33";
+ })];
+
configureFlags = [
"--gcov=1"
"--otr=1"
"--ssl=gnutls"
];
+ buildPhase = ''
+ make install-dev
+ '';
+
doCheck = true;
meta = {
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix b/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
new file mode 100644
index 000000000000..4e05e7cae970
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix
@@ -0,0 +1,20 @@
+{ stdenv, bitlbee }:
+
+with stdenv.lib;
+
+plugins:
+
+stdenv.mkDerivation {
+ inherit bitlbee plugins;
+ name = "bitlbee-plugins";
+ buildInputs = [ bitlbee plugins ];
+ phases = [ "installPhase" ];
+ installPhase = ''
+ mkdir -p $out/lib/bitlbee
+ for plugin in $plugins; do
+ for thing in $(ls $plugin/lib/bitlbee); do
+ ln -s $plugin/lib/bitlbee/$thing $out/lib/bitlbee/
+ done
+ done
+ '';
+}
diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix
index addbc060977e..7bb14efc1bb5 100644
--- a/pkgs/applications/networking/instant-messengers/blink/default.nix
+++ b/pkgs/applications/networking/instant-messengers/blink/default.nix
@@ -3,11 +3,11 @@
pythonPackages.buildPythonPackage rec {
name = "blink-${version}";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchurl {
url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz";
- sha256 = "0vd4ky4djhrrlmfpz7g43bxjynhpql4d3s9jdirh21kc8d1bgayk";
+ sha256 = "0lpc3gm0hk55m7i2hlmk2p76akcfvnqxg0hyamfhha90nv6fk7sf";
};
patches = [ ./pythonpath.patch ];
diff --git a/pkgs/applications/networking/instant-messengers/carrier/2.5.0.nix b/pkgs/applications/networking/instant-messengers/carrier/2.5.0.nix
index 909d6404193c..7368a8842147 100644
--- a/pkgs/applications/networking/instant-messengers/carrier/2.5.0.nix
+++ b/pkgs/applications/networking/instant-messengers/carrier/2.5.0.nix
@@ -1,11 +1,15 @@
-args : with args;
+args @ { fetchurl, stdenv, pkgconfig, perl, perlXMLParser, libxml2, openssl, nss
+, gtkspell, aspell, gettext, ncurses, avahi, dbus, dbus_glib, python
+, libtool, automake, autoconf, gstreamer
+, gtk, glib
+, libXScrnSaver, scrnsaverproto, libX11, xproto, kbproto, ... }: with args;
/*
arguments: all buildInputs
- optional: purple2Source: purple-2 source - place to copy libpurple from
+ optional: purple2Source: purple-2 source - place to copy libpurple from
(to use a fresher pidgin build)
*/
-let
- externalPurple2 = (lib.attrByPath ["purple2Source"] null args) != null;
+let
+ externalPurple2 = (lib.attrByPath ["purple2Source"] null args) != null;
in
rec {
src = fetchurl {
@@ -16,9 +20,9 @@ rec {
buildInputs = [gtkspell aspell
gstreamer startupnotification
libxml2 openssl nss
- libXScrnSaver ncurses scrnsaverproto
+ libXScrnSaver ncurses scrnsaverproto
libX11 xproto kbproto GConf avahi
- dbus dbus_glib glib python
+ dbus dbus_glib glib python
autoconf libtool automake];
propagatedBuildInputs = [
@@ -38,11 +42,11 @@ rec {
phaseNames = ["doConfigure" "preBuild" "doMakeInstall"]
++ (lib.optional externalPurple2 "postInstall")
;
-
+
name = "carrier-2.5.0";
meta = {
description = "PidginIM GUI fork with user-friendly development model";
- homepage = http://funpidgin.sf.net;
+ homepage = http://funpidgin.sf.net;
};
} // (if externalPurple2 then {
postInstall = fullDepEntry (''
diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
index f82ffa5ecd38..c6551307df9d 100644
--- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix
+++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
@@ -5,7 +5,7 @@
let
- version = "2.2.1373";
+ version = "2.2.1388";
rpath = stdenv.lib.makeSearchPath "lib" [
stdenv.glibc
@@ -47,12 +47,12 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "http://downloads.hipchat.com/linux/arch/x86_64/hipchat-${version}-x86_64.pkg.tar.xz";
- sha256 = "0mxjzigncp8sh5w2rpr7kvkiahagm3adss1zv6rqk8hc1awrnd8n";
+ sha256 = "18vl0c7xgyzd2miwkfzc638z0wzszgsdlbnslkkvxmg95ykdrdnz";
}
else if stdenv.system == "i686-linux" then
fetchurl {
url = "http://downloads.hipchat.com/linux/arch/i686/hipchat-${version}-i686.pkg.tar.xz";
- sha256 = "1f4cjbazgifxpyr6589frs417h4wpxbykf46w5qiw0m2wiqpqff5";
+ sha256 = "12q8hf3gmcgrqg6v9xqyknwsmwywpwm76jc54sfniiqv5ngq24hl";
}
else
throw "HipChat is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/jitsi/default.nix b/pkgs/applications/networking/instant-messengers/jitsi/default.nix
index 195c95884780..494f40f804e1 100644
--- a/pkgs/applications/networking/instant-messengers/jitsi/default.nix
+++ b/pkgs/applications/networking/instant-messengers/jitsi/default.nix
@@ -1,4 +1,9 @@
-{ stdenv, fetchurl, makeDesktopItem, unzip, ant, jdk }:
+{ stdenv, lib, fetchurl, makeDesktopItem, unzip, ant, jdk
+# Optional, Jitsi still runs without, but you may pass null:
+, alsaLib, dbus_libs, gtk2, libpulseaudio, openssl, xlibs
+}:
+
+assert stdenv.isLinux;
stdenv.mkDerivation rec {
@@ -22,6 +27,21 @@ stdenv.mkDerivation rec {
categories = "Application;Internet;";
};
+ libPath = lib.makeLibraryPath ([
+ stdenv.cc.cc # For libstdc++.
+ ] ++ lib.filter (x: x != null) [
+ alsaLib
+ dbus_libs
+ gtk2
+ libpulseaudio
+ openssl
+ ] ++ lib.optionals (xlibs != null) [
+ xlibs.libX11
+ xlibs.libXext
+ xlibs.libXScrnSaver
+ xlibs.libXv
+ ]);
+
buildInputs = [unzip ant jdk];
buildPhase = ''ant make'';
@@ -29,12 +49,21 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
cp -a lib $out/
+ rm -rf $out/lib/native/solaris
cp -a sc-bundles $out/
mkdir $out/bin
cp resources/install/generic/run.sh $out/bin/jitsi
chmod +x $out/bin/jitsi
- sed -i 's| java | ${jdk}/bin/java |' $out/bin/jitsi
+ substituteInPlace $out/bin/jitsi \
+ --subst-var-by JAVA ${jdk}/bin/java \
+ --subst-var-by EXTRALIBS ${gtk2}/lib
patchShebangs $out
+
+ libPath="$libPath:${jdk.jre.home}/lib/${jdk.architecture}"
+ find $out/ -type f -name '*.so' | while read file; do
+ patchelf --set-rpath "$libPath" "$file" && \
+ patchelf --shrink-rpath "$file"
+ done
'';
meta = {
@@ -42,6 +71,7 @@ stdenv.mkDerivation rec {
description = "Open Source Video Calls and Chat";
license = stdenv.lib.licenses.lgpl21Plus.shortName;
platforms = stdenv.lib.platforms.linux;
+ maintainers = [ stdenv.lib.maintainers.khumba ];
};
}
diff --git a/pkgs/applications/networking/instant-messengers/jitsi/jitsi.patch b/pkgs/applications/networking/instant-messengers/jitsi/jitsi.patch
index 9163cecd175b..9db7ec368b08 100644
--- a/pkgs/applications/networking/instant-messengers/jitsi/jitsi.patch
+++ b/pkgs/applications/networking/instant-messengers/jitsi/jitsi.patch
@@ -7,7 +7,7 @@
+
+#mkdir -p $HOME/.sip-communicator/log
+
-+cd "$( dirname "$( dirname "${BASH_SOURCE[0]}" )" )"
++cd "$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")"
# Get architecture
ARCH=`uname -m | sed -e s/x86_64/64/ -e s/i.86/32/`
@@ -24,4 +24,4 @@
export PATH=$PATH:native
-java $CLIENTARGS -classpath "lib/felix.jar:sc-bundles/sc-launcher.jar:sc-bundles/util.jar:lib/" -Djava.library.path=native -Dfelix.config.properties=file:./lib/felix.client.run.properties -Djava.util.logging.config.file=lib/logging.properties net.java.sip.communicator.launcher.SIPCommunicator
-+exec java $CLIENTARGS -classpath "lib/felix.jar:sc-bundles/sc-launcher.jar:sc-bundles/util.jar:lib/" -Djava.library.path=$NATIVELIBS -Dfelix.config.properties=file:lib/felix.client.run.properties -Djava.util.logging.config.file=lib/logging.properties net.java.sip.communicator.launcher.SIPCommunicator
++LD_LIBRARY_PATH=@EXTRALIBS@ exec @JAVA@ $CLIENTARGS -classpath "lib/felix.jar:sc-bundles/sc-launcher.jar:sc-bundles/util.jar:lib/" -Djava.library.path=$NATIVELIBS -Dfelix.config.properties=file:lib/felix.client.run.properties -Djava.util.logging.config.file=lib/logging.properties net.java.sip.communicator.launcher.SIPCommunicator
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
index 8b19f338d3e6..36be2517fbd0 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, pidgin, intltool, libxml2, nss, nspr }:
-let version = "1.18.1"; in
+let version = "1.20.0"; in
stdenv.mkDerivation {
name = "pidgin-sipe-${version}";
src = fetchurl {
url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
- sha256 = "18ch7jpi7ki7xlpahi88xrnmnhc6dcq4hafm0z6d5nfjfp8ldal5";
+ sha256 = "14d8q9by531hfssm6ydn75xkgidka3ar4sy3czjdb03s1ps82srs";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix
index 1a9f8f8feab6..ac4776c20722 100644
--- a/pkgs/applications/networking/instant-messengers/profanity/default.nix
+++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, automake, autoconf, pkgconfig, glib, openssl, expat
-, ncurses, libotr, curl, libstrophe
+, ncurses, libotr, curl, libstrophe, readline, libuuid
, autoAwaySupport ? false, libXScrnSaver ? null, libX11 ? null
, notifySupport ? false, libnotify ? null, gdk_pixbuf ? null
@@ -12,15 +12,15 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "profanity-${version}";
- version = "0.4.6";
+ version = "0.4.7";
src = fetchurl {
url = "http://www.profanity.im/profanity-${version}.tar.gz";
- sha256 = "17ra53c1m0w0lzm5bj63y1ysx8bv119z5h0csisxsn4r85z6cwln";
+ sha256 = "1p8ixvxacvf63r6lnf6iwlyz4pgiyp6widna1h2l2jg8kw14wb5h";
};
buildInputs = [
- automake autoconf pkgconfig
+ automake autoconf pkgconfig readline libuuid
glib openssl expat ncurses libotr curl libstrophe
] ++ optionals autoAwaySupport [ libXScrnSaver libX11 ]
++ optionals notifySupport [ libnotify gdk_pixbuf ];
diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix
index c1944cf6d0de..4cc54b9f8120 100644
--- a/pkgs/applications/networking/irc/quassel/default.nix
+++ b/pkgs/applications/networking/irc/quassel/default.nix
@@ -54,6 +54,8 @@ in with stdenv; mkDerivation rec {
])
);
+ NIX_CFLAGS_COMPILE = "-fPIC";
+
cmakeFlags = [
"-DEMBED_DATA=OFF"
"-DSTATIC=OFF" ]
diff --git a/pkgs/applications/networking/linssid/0001-unbundled-qwt.patch b/pkgs/applications/networking/linssid/0001-unbundled-qwt.patch
new file mode 100644
index 000000000000..46224ede33d4
--- /dev/null
+++ b/pkgs/applications/networking/linssid/0001-unbundled-qwt.patch
@@ -0,0 +1,43 @@
+From e57f22a5089f194013534c9a9bbc42ee639297f1 Mon Sep 17 00:00:00 2001
+From: Thomas Tuegel
+Date: Sat, 19 Sep 2015 11:10:32 -0500
+Subject: [PATCH] unbundled qwt
+
+---
+ linssid-app/linssid-app.pro | 4 +---
+ linssid.pro | 4 +---
+ 2 files changed, 2 insertions(+), 6 deletions(-)
+
+diff --git a/linssid-app/linssid-app.pro b/linssid-app/linssid-app.pro
+index 26f61e7..7b80b60 100644
+--- a/linssid-app/linssid-app.pro
++++ b/linssid-app/linssid-app.pro
+@@ -19,13 +19,11 @@ QMAKE_CC = gcc
+ QMAKE_CXX = g++
+ DEFINES +=
+ INCLUDEPATH += /usr/include/qt5
+-# /usr/local/qwt-6.1.0/include
+-INCLUDEPATH += ../qwt-lib/src
+ # LIBS += /usr/lib/x86_64-linux-gnu/libboost_regex.a
+ # LIBS += -lboost_regex
+ LIBS += -l:libboost_regex.a
+ # /usr/local/qwt-6.1.0/lib/libqwt.a
+-LIBS += ../qwt-lib/lib/libqwt.a
++LIBS += -lqwt
+ QMAKE_CXXFLAGS += -std=c++11
+ #
+ TARGET = linssid
+diff --git a/linssid.pro b/linssid.pro
+index 42dc277..26d1a2c 100644
+--- a/linssid.pro
++++ b/linssid.pro
+@@ -1,5 +1,3 @@
+ TEMPLATE = subdirs
+ CONFIG += ordered
+-SUBDIRS = qwt-lib \
+- linssid-app
+-linssid-app.depends = qwt-lib
++SUBDIRS = linssid-app
+--
+2.5.2
+
diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix
index 2b4c5f564bec..369010f41b52 100644
--- a/pkgs/applications/networking/linssid/default.nix
+++ b/pkgs/applications/networking/linssid/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, pkgconfig, boost, wirelesstools, iw }:
+{ stdenv, fetchurl, qt5, pkgconfig, boost, wirelesstools, iw, qwt6 }:
stdenv.mkDerivation rec {
name = "linssid-${version}";
@@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl";
};
- buildInputs = [ qt5 pkgconfig boost ];
+ buildInputs = [ qt5.base qt5.svg pkgconfig boost qwt6 ];
+
+ patches = [ ./0001-unbundled-qwt.patch ];
postPatch = ''
sed -e "s|/usr/include/|/nonexistent/|g" -i linssid-app/*.pro
@@ -20,6 +22,9 @@ stdenv.mkDerivation rec {
sed -e "s|iwlist|${wirelesstools}/sbin/iwlist|g" -i linssid-app/Getter.cpp
sed -e "s|iw dev|${iw}/sbin/iw dev|g" -i linssid-app/MainForm.cpp
+
+ # Remove bundled qwt
+ rm -fr qwt-lib
'';
configurePhase = "qmake linssid.pro";
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
index c22c1a275c36..23f5e4ec1bab 100644
--- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix
+++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
@@ -1,7 +1,7 @@
{ fetchurl, stdenv
, curl, dbus, dbus_glib, enchant, gtk, gnutls, gnupg, gpgme, libarchive
, libcanberra, libetpan, libnotify, libsoup, libxml2, networkmanager, openldap
-, perl, pkgconfig, poppler, python, webkitgtk2
+, perl, pkgconfig, poppler, python, shared_mime_info, webkitgtk2
# Build options
# TODO: A flag to build the manual.
@@ -39,6 +39,7 @@ stdenv.mkDerivation {
homepage = http://www.claws-mail.org/;
license = licenses.gpl3;
platforms = platforms.linux;
+ maintainers = [ maintainers.khumba ];
};
src = fetchurl {
@@ -46,6 +47,8 @@ stdenv.mkDerivation {
sha256 = "0w13xzri9d3165qsxf1dig1f0gxn3ib4lysfc9pgi4zpyzd0zgrw";
};
+ patches = [ ./mime.patch ];
+
buildInputs =
[ curl dbus dbus_glib gtk gnutls libetpan perl pkgconfig python ]
++ optional enableSpellcheck enchant
@@ -78,4 +81,13 @@ stdenv.mkDerivation {
++ optional (!enablePluginSpamReport) "--disable-spam_report-plugin"
++ optional (!enablePluginVcalendar) "--disable-vcalendar-plugin"
++ optional (!enableSpellcheck) "--disable-enchant";
+
+ enableParallelBuilding = true;
+
+ postInstall = ''
+ mkdir -p $out/share/applications
+ cp claws-mail.desktop $out/share/applications
+
+ ln -sT ${shared_mime_info}/share/mime $out/share/mime
+ '';
}
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/mime.patch b/pkgs/applications/networking/mailreaders/claws-mail/mime.patch
new file mode 100644
index 000000000000..5437c1c65d76
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/claws-mail/mime.patch
@@ -0,0 +1,14 @@
+--- a/src/procmime.c 2015-09-18 04:03:11.767654094 -0700
++++ b/src/procmime.c 2015-09-18 04:08:38.834503034 -0700
+@@ -1196,11 +1196,7 @@
+ if (mime_type_list)
+ return mime_type_list;
+
+-#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
+ if ((fp = procmime_fopen(DATAROOTDIR "/mime/globs", "rb")) == NULL)
+-#else
+- if ((fp = procmime_fopen("/usr/share/mime/globs", "rb")) == NULL)
+-#endif
+ {
+ fp_is_glob_file = FALSE;
+ if ((fp = procmime_fopen("/etc/mime.types", "rb")) == NULL) {
diff --git a/pkgs/applications/networking/p2p/retroshare/0.6.nix b/pkgs/applications/networking/p2p/retroshare/0.6.nix
index 6ea7089b3fb0..855ebdd05936 100644
--- a/pkgs/applications/networking/p2p/retroshare/0.6.nix
+++ b/pkgs/applications/networking/p2p/retroshare/0.6.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchsvn, cmake, qt, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2
-, libXScrnSaver, speex, curl, libxml2, libxslt, sqlcipher }:
+{ stdenv, fetchFromGitHub, cmake, qt, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2
+, libXScrnSaver, speex, curl, libxml2, libxslt, sqlcipher, libmicrohttpd, opencv }:
stdenv.mkDerivation {
- name = "retroshare-0.6-svn-7445";
+ name = "retroshare-0.6-git-fabc3a3";
- src = fetchsvn {
- url = svn://svn.code.sf.net/p/retroshare/code/trunk;
- rev = 7445;
- sha256 = "1dqh65bn21g7ix752ddrr10kijjdwjgjipgysyxnm90zjmdlx3cc";
+ src = fetchFromGitHub {
+ owner = "RetroShare";
+ repo = "RetroShare";
+ rev = "fabc3a398536565efe77fb1b1ef37bd484dc7d4a";
+ sha256 = "189qndkfq9kgv3qi3wx8ivla4j8fxr4iv7c8y9rjrjaz8jwdkn5x";
};
NIX_CFLAGS_COMPILE = "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${libxml2}/include/libxml2 -I${sqlcipher}/include/sqlcipher";
@@ -29,12 +30,14 @@ stdenv.mkDerivation {
# retroshare-nogui/src/retroshare-nogui.pro
buildInputs = [ speex qt libupnp gpgme gnome3.libgnome_keyring glib libssh pkgconfig
- protobuf bzip2 libXScrnSaver curl libxml2 libxslt sqlcipher ];
+ protobuf bzip2 libXScrnSaver curl libxml2 libxslt sqlcipher libmicrohttpd opencv ];
configurePhase = ''
qmake PREFIX=$out DESTDIR=$out RetroShare.pro
'';
+ enableParallelBuilding = true;
+
postInstall = ''
mkdir -p $out/bin
mv $out/retroshare-nogui $out/bin
diff --git a/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix b/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
index 01ba9ff47eaa..5d76b295dda3 100644
--- a/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
+++ b/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
@@ -1,15 +1,21 @@
-{ stdenv, makeWrapper, fetchurl, pkgconfig, intltool, gtk3, json_glib, curl }:
+{ stdenv, autoconf, automake, libtool, makeWrapper, fetchgit, pkgconfig
+, intltool, gtk3, json_glib, curl }:
stdenv.mkDerivation rec {
- name = "transmission-remote-gtk-1.1.1";
+ name = "transmission-remote-gtk-${version}";
+ version = "1.2";
- src = fetchurl {
- url = "http://transmission-remote-gtk.googlecode.com/files/${name}.tar.gz";
- sha256 = "1jbh2pm4i740cmzqd2r7zxnqqipvv2v2ndmnmk53nqrxcbgc4nlz";
+ src = fetchgit {
+ url = "https://github.com/ajf8/transmission-remote-gtk.git";
+ rev = "aa4e0c7d836cfcc10d8effd10225abb050343fc8";
+ sha256 = "0qz0jzr5w5fik2awfps0q49blwm4z7diqca2405rr3fyhyjhx42b";
};
- buildInputs = [ makeWrapper pkgconfig intltool gtk3 json_glib curl ];
+ buildInputs = [ libtool autoconf automake makeWrapper pkgconfig intltool
+ gtk3 json_glib curl ];
+
+ preConfigure = "sh autogen.sh";
preFixup = ''
wrapProgram "$out/bin/transmission-remote-gtk" \
@@ -19,7 +25,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib;
{ description = "GTK remote control for the Transmission BitTorrent client";
- homepage = http://code.google.com/p/transmission-remote-gtk/;
+ homepage = https://github.com/ajf8/transmission-remote-gtk;
license = licenses.gpl2;
maintainers = [ maintainers.emery ];
platforms = platforms.linux;
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index ac2d11a33f16..40e3fdef9803 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -10,7 +10,7 @@ assert withQt -> !withGtk && qt4 != null;
with stdenv.lib;
let
- version = "1.12.5";
+ version = "1.12.7";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.wireshark.org/download/src/wireshark-${version}.tar.bz2";
- sha256 = "10mxgj916bwv92pfhk4kldcaanr9vndjklzp9ypdxr29xyr7gwfh";
+ sha256 = "0b7rc1l1gvzcz7gfa6g7pcn32zrcfiqjx0rxm6cg3q1cwwa1qjn7";
};
buildInputs = [
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
deleted file mode 100644
index f42426b3cafd..000000000000
--- a/pkgs/applications/networking/syncthing/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, fetchgit, goPackages }:
-
-with goPackages;
-
-buildGoPackage rec {
- name = "syncthing-${version}";
- version = "0.11.22";
- goPackagePath = "github.com/syncthing/syncthing";
- src = fetchgit {
- url = "git://github.com/syncthing/syncthing.git";
- rev = "refs/tags/v${version}";
- sha256 = "0zdk5ppsq35s10chf8m3rw3sk9d77ms7x1vj3inw4lrm1h13w9wk";
- };
-
- subPackages = [ "cmd/syncthing" ];
-
- buildFlagsArray = "-ldflags=-w -X main.Version v${version}";
-
- preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
-
- doCheck = true;
-
- dontInstallSrc = true;
-
- meta = {
- homepage = http://syncthing.net/;
- description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
- license = lib.licenses.mit;
- maintainers = with lib.maintainers; [ matejc theuni ];
- platforms = with lib.platforms; unix;
- };
-}
diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix
index 21551beb9dce..f1adef86dc94 100644
--- a/pkgs/applications/office/libreoffice/default.nix
+++ b/pkgs/applications/office/libreoffice/default.nix
@@ -1,23 +1,17 @@
-# when updating version, wait for the build to fail
-# run make without sourcing the environment and let libreoffice
-# download all extra files
-# then list extra files separated by newline and pipe them to
-# generate-libreoffice-srcs.sh and copy output to libreoffice-srcs.nix
-
{ stdenv, fetchurl, pam, python3, tcsh, libxslt, perl, ArchiveZip
, CompressZlib, zlib, libjpeg, expat, pkgconfigUpstream, freetype, libwpd
, libxml2, db, sablotron, curl, fontconfig, libsndfile, neon
, bison, flex, zip, unzip, gtk, libmspack, getopt, file, cairo, which
-, icu, boost, jdk, ant, cups, xorg
+, icu, boost, jdk, ant, cups, xorg, libcmis
, openssl, gperf, cppunit, GConf, ORBit2, poppler
-, librsvg, gnome_vfs, mesa
+, librsvg, gnome_vfs, mesa, bsh, CoinMP, libwps, libabw
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
, libwpg, dbus_glib, glibc, qt4, kde4, clucene_core, libcdr, lcms, vigra
, unixODBC, mdds, saneBackends, mythes, libexttextcat, libvisio
, fontsConf, pkgconfig, libzip, bluez5, libtool, maven
, libatomic_ops, graphite2, harfbuzz, libodfgen
, librevenge, libe-book, libmwaw, glm, glew, gst_all_1
-, gdb
+, gdb, commonsLogging
, langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" ]
, withHelp ? true
}:
@@ -26,27 +20,11 @@ let
langsSpaces = stdenv.lib.concatStringsSep " " langs;
major = "5";
minor = "0";
- patch = "0";
- tweak = "5";
+ patch = "1";
+ tweak = "2";
subdir = "${major}.${minor}.${patch}";
version = "${subdir}${if tweak == "" then "" else "."}${tweak}";
- # doesn't exist in srcs
- # 0.8 version is in 0.7.0 tarball
- libixion = stdenv.mkDerivation rec {
- version = "0.7.0";
- name = "libixion-${version}";
-
- src = fetchurl {
- url = "http://kohei.us/files/ixion/src/${name}.tar.bz2";
- sha256 = "10amvz7fzr1kcy3svfspkdykmspqgpjdmk44cyr406wi7v4lwnf9";
- };
-
- buildInputs = [ boost mdds pkgconfig ];
-
- configureFlags = [ "--with-boost=${boost.dev}" ];
- };
-
fetchThirdParty = {name, md5, brief, subDir ? ""}: fetchurl {
inherit name md5;
url = if brief then
@@ -55,19 +33,6 @@ let
"http://dev-www.libreoffice.org/src/${subDir}${md5}-${name}";
};
- # Can't find Boost inside LO build
- liborcus = stdenv.mkDerivation rec {
- name = "liborcus-0.7.0";
- src = fetchThirdParty (stdenv.lib.findFirst
- (x: x.name == "${name}.tar.bz2")
- ("Error: update liborcus version inside LO expression")
- (import ./libreoffice-srcs.nix));
-
- buildInputs = [ boost mdds pkgconfig zlib /*libixion*/ ];
-
- configureFlags = [ "--with-boost=${boost.dev}" ];
- };
-
fetchSrc = {name, sha256}: fetchurl {
url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz";
inherit sha256;
@@ -82,24 +47,23 @@ let
translations = fetchSrc {
name = "translations";
- sha256 = "0x86vf1fhgnjgkj25rqcfgrvid6smikmb96121sasydmg0jcsypm";
+ sha256 = "0z8qf4ri8wmzgc5601fxcwxwym1h9rwk0kaqpxhqbkj04h9z0xq7";
};
# TODO: dictionaries
help = fetchSrc {
name = "help";
- sha256 = "18wqmbm3yvjz6pfnz5qfklwv4d53vrv2npiz3796d4d1j245ylcv";
+ sha256 = "0iz9jz0ppghzh33kzw7v0xqchim9brys6mnmlk74nzrhci2vj7f7";
};
};
-in
-stdenv.mkDerivation rec {
+in stdenv.mkDerivation rec {
name = "libreoffice-${version}";
src = fetchurl {
url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
- sha256 = "046f5lakw2rygs5qjmhsxmdw7pa9gwcamavnyqpk1rfbis2ga5wv";
+ sha256 = "06nj1wnx09a6v3kx9k48810mkb19dbkaln1af33f4m7bxg5bjl87";
};
# Openoffice will open libcups dynamically, so we link it directly
@@ -119,30 +83,21 @@ stdenv.mkDerivation rec {
ln -svf ${srcs.translations} $sourceRoot/src/${srcs.translations.name}
'';
- patchPhase = ''
- find . -type f -print0 | xargs -0 sed -i \
- -e 's,! */bin/bash,!${bash}/bin/bash,' -e 's,\(!\|SHELL=\) */usr/bin/env bash,\1${bash}/bin/bash,' \
- -e 's,! */usr/bin/perl,!${perl}/bin/perl,' -e 's,! */usr/bin/env perl,!${perl}/bin/perl,' \
- -e 's,! */usr/bin/python,!${python3}/bin/${python3.executable},' -e 's,! */usr/bin/env python,!${python3}/bin/${python3.executable},'
- #sed -i 's,ANT_OPTS+="\(.*\)",ANT_OPTS+=\1,' apache-commons/java/*/makefile.mk
-
- '';
-
QT4DIR = qt4;
KDE4DIR = kde4.kdelibs;
- preConfigure = ''
- # Needed to find genccode
- PATH=$PATH:${icu}/sbin
+ # Fix boost 1.59 compat
+ # Try removing in the next version
+ CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED";
+ preConfigure = ''
configureFlagsArray=(
"--with-parallelism=$NIX_BUILD_CORES"
"--with-lang=${langsSpaces}"
- "${if withHelp then "" else "--without-help"}"
-
);
chmod a+x ./bin/unpack-sources
+ patchShebangs .
# It is used only as an indicator of the proper current directory
touch solenv/inc/target.mk
'';
@@ -167,7 +122,7 @@ stdenv.mkDerivation rec {
# This is required as some cppunittests require fontconfig configured
export FONTCONFIG_FILE=${fontsConf}
- # This to aovid using /lib:/usr/lib at linking
+ # This to avoid using /lib:/usr/lib at linking
sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk
find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \;
@@ -177,74 +132,76 @@ stdenv.mkDerivation rec {
# It installs only things to $out/lib/libreoffice
postInstall = ''
- mkdir -p $out/bin $out/share
+ mkdir -p $out/bin $out/share/desktop
+
for a in sbase scalc sdraw smath swriter spadmin simpress soffice; do
ln -s $out/lib/libreoffice/program/$a $out/bin/$a
done
- ln -s $out/bin/soffice $out/bin/libreoffice
+ ln -s $out/bin/soffice $out/bin/libreoffice
ln -s $out/lib/libreoffice/share/xdg $out/share/applications
+
for f in $out/share/applications/*.desktop; do
substituteInPlace "$f" --replace "Exec=libreofficedev${major}.${minor}" "Exec=libreoffice"
substituteInPlace "$f" --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice"
substituteInPlace "$f" --replace "Exec=libreoffice" "Exec=libreoffice"
done
- mkdir -p "$out/share/desktop"
cp -r sysui/desktop/icons "$out/share"
sed -re 's@Icon=libreofficedev[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop
'';
configureFlags = [
+ "${if withHelp then "" else "--without-help"}"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.lib}/lib"
+ "--with-beanshell-jar=${bsh}"
"--with-vendor=NixOS"
-
- # Without these, configure does not finish
- "--without-junit"
-
- # Without this, it wants to download
+ "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar"
+ "--disable-report-builder"
"--enable-python=system"
"--enable-dbus"
"--enable-kde4"
- "--disable-odk"
- "--with-system-cairo"
- "--with-system-libs"
- "--with-system-headers"
- "--with-system-openssl"
- "--with-system-openldap"
- "--without-system-libwps" # TODO
- "--without-doxygen"
-
- # I imagine this helps. Copied from go-oo.
- # Modified on every upgrade, though
- "--disable-kde"
- "--disable-postgresql-sdbc"
"--with-package-format=installed"
"--enable-epm"
"--with-jdk-home=${jdk.home}"
"--with-ant-home=${ant}/lib/ant"
+ "--with-system-cairo"
+ "--with-system-libs"
+ "--with-system-headers"
+ "--with-system-openssl"
+ "--with-system-libabw"
+ "--with-system-libcmis"
+ "--with-system-libwps"
+ "--with-system-openldap"
+ "--with-system-coinmp"
+
+ # Without these, configure does not finish
+ "--without-junit"
+
+ # I imagine this helps. Copied from go-oo.
+ # Modified on every upgrade, though
+ "--disable-kde"
+ "--disable-odk"
+ "--disable-postgresql-sdbc"
+ "--disable-firebird-sdbc"
"--without-fonts"
"--without-myspell-dicts"
- "--without-system-beanshell"
+ "--without-doxygen"
+
+ # TODO: package these as system libraries
+ "--with-system-beanshell"
"--without-system-hsqldb"
- "--without-system-jars"
"--without-system-altlinuxhyph"
"--without-system-lpsolve"
"--without-system-npapi-headers"
- "--without-system-libcmis"
-
"--without-system-libetonyek"
"--without-system-libfreehand"
- "--without-system-libabw"
- "--without-system-firebird"
"--without-system-liblangtag"
"--without-system-libmspub"
-
"--without-system-libpagemaker"
- "--without-system-coinmp"
"--without-system-libgltf"
-
+ # https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f
"--without-system-orcus"
];
@@ -260,21 +217,21 @@ stdenv.mkDerivation rec {
hunspell icu jdk kde4.kdelibs lcms libcdr libexttextcat unixODBC libjpeg
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
- libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer
+ libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer
gst_all_1.gst-plugins-base
neon nspr nss openldap openssl ORBit2 pam perl pkgconfigUpstream poppler
python3 sablotron saneBackends tcsh unzip vigra which zip zlib
- mdds bluez5 glibc
+ mdds bluez5 glibc libcmis libwps libabw
libxshmfence libatomic_ops graphite2 harfbuzz
librevenge libe-book libmwaw glm glew
- libodfgen
+ libodfgen CoinMP
];
meta = with stdenv.lib; {
description = "Comprehensive, professional-quality productivity suite, a variant of openoffice.org";
homepage = http://libreoffice.org/;
license = licenses.lgpl3;
- maintainers = [ maintainers.viric maintainers.raskin ];
+ maintainers = with maintainers; [ viric raskin ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/office/libreoffice/generate-libreoffice-srcs.sh b/pkgs/applications/office/libreoffice/generate-libreoffice-srcs.sh
deleted file mode 100755
index e5a867463bfc..000000000000
--- a/pkgs/applications/office/libreoffice/generate-libreoffice-srcs.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/run/current-system/sw/bin/bash
-
-# Take the list of files from the main package, ooo.lst.in
-
-cat <&2;
- ;;
- *_MD5SUM\ :=*)
- read tbline;
- line=${line##* };
- tbline=${tbline##* };
- md5=$line
- name=$tbline;
- brief=true;
- write_entry;
- ;;
- *_TARBALL\ :=*)
- line=${line##* };
- md5=${line:0:32};
- name=${line:33};
- brief=false;
- write_entry;
- ;;
- *)
- echo Skipping: "$line" >&2;
- ;;
- esac
-done
-
-echo ']'
diff --git a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix
index e8a0753c198b..22cf1857ae48 100644
--- a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix
+++ b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix
@@ -1,9 +1,5 @@
+# DEPRECATED: these dependencies sould be system libraries
[
-{
- name = "libabw-0.1.1.tar.bz2";
- md5 = "7a3815b506d064313ba309617b6f5a0b";
- brief = true;
-}
{
name = "commons-codec-1.6-src.tar.gz";
md5 = "2e482c7567908d334785ce7d69ddfff7";
@@ -44,61 +40,21 @@
md5 = "71a11d037240b292f824ba1eb537b4e3";
brief = true;
}
-{
- name = "boost_1_55_0.tar.bz2";
- md5 = "d6eef4b4cacb2183f2bf265a5a03a354";
- brief = false;
-}
-{
- name = "bsh-2.0b5-src.zip";
- md5 = "ec1941a74d3ef513c4ce57a9092b74e1";
- brief = false;
-}
-{
- name = "cairo-1.10.2.tar.gz";
- md5 = "f101a9e88b783337b20b2e26dfd26d5f";
- brief = false;
-}
-{
- name = "libcdr-0.1.1.tar.bz2";
- md5 = "b33fd0be3befdd1b37777e08ce058bd9";
- brief = true;
-}
{
name = "clucene-core-2.3.3.4.tar.gz";
md5 = "48d647fbd8ef8889e5a7f422c1bfda94";
brief = false;
}
-{
- name = "libcmis-0.5.0.tar.gz";
- md5 = "5821b806a98e6c38370970e682ce76e8";
- brief = false;
-}
-{
- name = "CoinMP-1.7.6.tgz";
- md5 = "1cce53bf4b40ae29790d2c5c9f8b1129";
- brief = true;
-}
{
name = "collada2gltf-master-cb1d97788a.tar.bz2";
md5 = "4b87018f7fff1d054939d19920b751a0";
brief = false;
}
-{
- name = "cppunit-1.13.2.tar.gz";
- md5 = "d1c6bdd5a76c66d2c38331e2d287bc01";
- brief = true;
-}
{
name = "ConvertTextToNumber-1.3.2.oxt";
md5 = "451ccf439a36a568653b024534669971";
brief = false;
}
-{
- name = "curl-7.43.0.tar.bz2";
- md5 = "11bddbb452a8b766b932f859aaeeed39";
- brief = true;
-}
{
name = "libe-book-0.1.2.tar.bz2";
md5 = "6b48eda57914e6343efebc9381027b78";
@@ -119,16 +75,6 @@
md5 = "dd7dab7a5fea97d2a6a43f511449b7cd";
brief = false;
}
-{
- name = "Firebird-2.5.2.26540-0.tar.bz2";
- md5 = "21154d2004e025c8a3666625b0357bb5";
- brief = true;
-}
-{
- name = "fontconfig-2.8.0.tar.gz";
- md5 = "77e15a92006ddc2adbb06f840d591c0e";
- brief = false;
-}
{
name = "crosextrafonts-20130214.tar.gz";
md5 = "368f114c078f94214a308a74c7e991bc";
@@ -194,16 +140,6 @@
md5 = "dbf2caca1d3afd410a29217a9809d397";
brief = false;
}
-{
- name = "glew-1.10.0.zip";
- md5 = "594eb47b4b1210e25438d51825404d5a";
- brief = false;
-}
-{
- name = "glm-0.9.4.6-libreoffice.zip";
- md5 = "bae83fa5dc7f081768daace6e199adc3";
- brief = false;
-}
{
name = "graphite2-1.2.4.tgz";
md5 = "2ef839348fe28e3b923bf8cced440227";
@@ -289,16 +225,6 @@
md5 = "39bb3fcea1514f1369fcfc87542390fd";
brief = false;
}
-{
- name = "jpegsrc.v9a.tar.gz";
- md5 = "3353992aecaee1805ef4109aadd433e7";
- brief = true;
-}
-{
- name = "libjpeg-turbo-1.3.1.tar.gz";
- md5 = "2c3a68129dac443a72815ff5bb374b05";
- brief = true;
-}
{
name = "language-subtag-registry-2015-06-08.tar.bz2";
md5 = "d431bd8a70455be1fa8523fa633c005b";
@@ -345,26 +271,11 @@
md5 = "1f24ab1d39f4a51faf22244c94a6203f";
brief = false;
}
-{
- name = "libxml2-2.9.1.tar.gz";
- md5 = "9c0cfef285d5c4a5c80d00904ddab380";
- brief = false;
-}
-{
- name = "libxslt-1.1.28.tar.gz";
- md5 = "9667bf6f9310b957254fdcf6596600b7";
- brief = false;
-}
{
name = "lp_solve_5.5.tar.gz";
md5 = "26b3e95ddf3d9c077c480ea45874b3b8";
brief = false;
}
-{
- name = "mariadb_client-2.0.0-src.tar.gz";
- md5 = "a233181e03d3c307668b4c722d881661";
- brief = false;
-}
{
name = "mdds_0.12.1.tar.bz2";
md5 = "ef2560ed5416652a7fe195305b14cebe";
@@ -410,16 +321,6 @@
md5 = "4ca8a6ef0afeefc864e9ef21b9f14bd6";
brief = true;
}
-{
- name = "openldap-2.4.31.tgz";
- md5 = "804c6cb5698db30b75ad0ff1c25baefd";
- brief = false;
-}
-{
- name = "openssl-1.0.2a.tar.gz";
- md5 = "a06c547dac9044161a477211049f60ef";
- brief = true;
-}
{
name = "liborcus-0.7.0.tar.bz2";
md5 = "7681383be6ce489d84c1c74f4e7f9643";
@@ -445,16 +346,6 @@
md5 = "35c0660065d023365e9854c13e289d12";
brief = true;
}
-{
- name = "postgresql-9.2.1.tar.bz2";
- md5 = "c0b4799ea9850eae3ead14f0a60e9418";
- brief = false;
-}
-{
- name = "Python-3.3.5.tgz";
- md5 = "803a75927f8f241ca78633890c798021";
- brief = true;
-}
{
name = "raptor2-2.0.9.tar.gz";
md5 = "4ceb9316488b0ea01acf011023cf7fff";
@@ -495,39 +386,9 @@
md5 = "0168229624cfac409e766913506961a8";
brief = false;
}
-{
- name = "vigra1.6.0.tar.gz";
- md5 = "d62650a6f908e85643e557a236ea989c";
- brief = false;
-}
-{
- name = "libvisio-0.1.1.tar.bz2";
- md5 = "726c1f5be65eb7d649e0d48b63d920e7";
- brief = true;
-}
-{
- name = "libwpd-0.10.0.tar.bz2";
- md5 = "0773d79a1f240ef9f4f20242b13c5bb7";
- brief = true;
-}
-{
- name = "libwpg-0.3.0.tar.bz2";
- md5 = "17da9770cb8b317b7633f9807b32b71a";
- brief = true;
-}
-{
- name = "libwps-0.4.0.tar.bz2";
- md5 = "e9162d2566421d9d71b3ad2377a68fd5";
- brief = true;
-}
{
name = "xsltml_2.1.2.zip";
md5 = "a7983f859eafb2677d7ff386a023bc40";
brief = false;
}
-{
- name = "zlib-1.2.8.tar.gz";
- md5 = "44d667c142d7cda120332623eab69f40";
- brief = true;
-}
]
diff --git a/pkgs/applications/office/pinpoint/default.nix b/pkgs/applications/office/pinpoint/default.nix
index 0c3297ccc937..750fca150282 100644
--- a/pkgs/applications/office/pinpoint/default.nix
+++ b/pkgs/applications/office/pinpoint/default.nix
@@ -3,17 +3,19 @@
stdenv.mkDerivation rec {
name = "pinpoint-${version}";
- version = "0.1.4";
+ version = "0.1.6";
src = fetchurl {
- url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${name}.tar.bz2";
- sha256 = "26df7ba171d13f697c30c272460989b0f1b45e70c797310878a589ed5a6a47de";
+ url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${name}.tar.xz";
+ sha256 = "0jzkf74w75paflnvsil2y6qsyaqgxf6akz97176xdg6qri4nwal1";
};
buildInputs = [ pkgconfig autoconf automake clutter clutter-gst gdk_pixbuf
cairo ];
- meta = {
+ meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/action/show/Apps/Pinpoint;
description = "A tool for making hackers do excellent presentations";
- license = stdenv.lib.licenses.lgpl21;
+ license = licenses.lgpl21;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/applications/science/geometry/drgeo/default.nix b/pkgs/applications/science/geometry/drgeo/default.nix
index c18a6ed7426c..63b757945d29 100644
--- a/pkgs/applications/science/geometry/drgeo/default.nix
+++ b/pkgs/applications/science/geometry/drgeo/default.nix
@@ -1,4 +1,4 @@
-args : with args;
+args @ { libxml2, perl, intltool, libtool, pkgconfig, gtk, ... } : with args;
let version = lib.attrByPath ["version"] "1.1.0" args; in
rec {
src = fetchurl {
@@ -17,7 +17,7 @@ rec {
doPreBuild = fullDepEntry (''
cp drgeo.desktop.in drgeo.desktop
'') ["minInit" "doUnpack"];
-
+
name = "drgeo-" + version;
meta = {
description = "Interactive geometry program";
diff --git a/pkgs/applications/science/logic/coq/8.3.nix b/pkgs/applications/science/logic/coq/8.3.nix
index c59c4b062708..adae2dd067a3 100644
--- a/pkgs/applications/science/logic/coq/8.3.nix
+++ b/pkgs/applications/science/logic/coq/8.3.nix
@@ -1,6 +1,9 @@
# - coqide compilation can be disabled by setting lablgtk to null;
+# - The csdp program used for the Micromega tactic is statically referenced.
+# However, coq can build without csdp by setting it to null.
+# In this case some Micromega tactics will search the user's path for the csdp program and will fail if it is not found.
-{ stdenv, make, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null }:
+{ stdenv, make, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null }:
let
version = "8.3pl4";
@@ -11,6 +14,10 @@ let
"\"-I\"; \"+lablgtk2\"" \
"\"-I\"; \"$(echo "${lablgtk}"/lib/ocaml/*/site-lib/lablgtk2)\"; \"-I\"; \"$(echo "${lablgtk}"/lib/ocaml/*/site-lib/stublibs)\""
'' else "";
+ csdpPatch = if csdp != null then ''
+ substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
+ substituteInPlace plugins/micromega/coq_micromega.ml --replace "System.search_exe_in_path \"csdp\"" "Some \"${csdp}/bin/csdp\""
+ '' else "";
in
stdenv.mkDerivation {
@@ -44,6 +51,7 @@ stdenv.mkDerivation {
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
${idePatch}
+ ${csdpPatch}
'';
# This post install step is needed to build ssrcoqide from the ssreflect package
diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix
index 87b476249f44..2afa18d40a4b 100644
--- a/pkgs/applications/science/logic/coq/8.5.nix
+++ b/pkgs/applications/science/logic/coq/8.5.nix
@@ -1,12 +1,19 @@
# - coqide compilation can be disabled by setting lablgtk to null;
+# - The csdp program used for the Micromega tactic is statically referenced.
+# However, coq can build without csdp by setting it to null.
+# In this case some Micromega tactics will search the user's path for the csdp program and will fail if it is not found.
-{stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
+{stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
version = "8.5b2";
coq-version = "8.5";
buildIde = lablgtk != null;
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
+ csdpPatch = if csdp != null then ''
+ substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
+ substituteInPlace plugins/micromega/coq_micromega.ml --replace "System.is_in_system_path \"csdp\"" "true"
+ '' else "";
in
stdenv.mkDerivation {
@@ -28,6 +35,7 @@ stdenv.mkDerivation {
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
substituteInPlace Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)"
+ ${csdpPatch}
'';
setupHook = writeText "setupHook.sh" ''
diff --git a/pkgs/applications/science/logic/coq/HEAD.nix b/pkgs/applications/science/logic/coq/HEAD.nix
index 7b5d1ce62b4e..3656b5cab191 100644
--- a/pkgs/applications/science/logic/coq/HEAD.nix
+++ b/pkgs/applications/science/logic/coq/HEAD.nix
@@ -1,12 +1,19 @@
# - coqide compilation can be disabled by setting lablgtk to null;
+# - The csdp program used for the Micromega tactic is statically referenced.
+# However, coq can build without csdp by setting it to null.
+# In this case some Micromega tactics will search the user's path for the csdp program and will fail if it is not found.
-{stdenv, fetchgit, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
+{stdenv, fetchgit, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
version = "8.5pre-0c999f02";
coq-version = "8.5";
buildIde = lablgtk != null;
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
+ csdpPatch = if csdp != null then ''
+ substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
+ substituteInPlace plugins/micromega/coq_micromega.ml --replace "System.is_in_system_path \"csdp\"" "true"
+ '' else "";
in
stdenv.mkDerivation {
@@ -31,6 +38,7 @@ stdenv.mkDerivation {
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
substituteInPlace Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)"
+ ${csdpPatch}
'';
setupHook = writeText "setupHook.sh" ''
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index 5a8fa9ff4dc1..38ba14e83cf8 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -1,12 +1,19 @@
# - coqide compilation can be disabled by setting lablgtk to null;
+# - The csdp program used for the Micromega tactic is statically referenced.
+# However, coq can build without csdp by setting it to null.
+# In this case some Micromega tactics will search the user's path for the csdp program and will fail if it is not found.
-{stdenv, fetchurl, pkgconfig, writeText, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
+{stdenv, fetchurl, pkgconfig, writeText, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
version = "8.4pl6";
coq-version = "8.4";
buildIde = lablgtk != null;
ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
+ csdpPatch = if csdp != null then ''
+ substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
+ substituteInPlace plugins/micromega/coq_micromega.ml --replace "System.is_in_system_path \"csdp\"" "true"
+ '' else "";
in
stdenv.mkDerivation {
@@ -29,6 +36,7 @@ stdenv.mkDerivation {
RM=$(type -tp rm)
substituteInPlace configure --replace "/bin/uname" "$UNAME"
substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
+ ${csdpPatch}
'';
preConfigure = ''
diff --git a/pkgs/applications/science/logic/hol_light/default.nix b/pkgs/applications/science/logic/hol_light/default.nix
index b50501a6d34c..7653e137e260 100644
--- a/pkgs/applications/science/logic/hol_light/default.nix
+++ b/pkgs/applications/science/logic/hol_light/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchsvn, writeScript, ocaml, findlib, camlp5 }:
+{ stdenv, fetchsvn, writeScript, ocaml, camlp5 }:
let
start_script = ''
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
sha256 = "1qzb48j7zbx7c327ixmvq2k0ap7y6fqvwal0195chfxvhs858lfq";
};
- buildInputs = [ ocaml findlib camlp5 ];
+ buildInputs = [ ocaml camlp5 ];
installPhase = ''
mkdir -p "$out/lib/hol_light" "$out/bin"
diff --git a/pkgs/applications/science/logic/jonprl/default.nix b/pkgs/applications/science/logic/jonprl/default.nix
new file mode 100644
index 000000000000..7620aa3e3e03
--- /dev/null
+++ b/pkgs/applications/science/logic/jonprl/default.nix
@@ -0,0 +1,34 @@
+{ fetchgit, stdenv, smlnj, which }:
+
+stdenv.mkDerivation rec {
+ name = "jonprl-${version}";
+ version = "0.1.0";
+
+ src = fetchgit {
+ url = "https://github.com/jonsterling/JonPRL.git";
+ deepClone = true;
+ rev = "refs/tags/v${version}";
+ sha256 = "1z0d8dq1nb4dycic58nnk617hbfgafz0vmwr8gkl0i6405gfg1zy";
+ };
+
+ buildInputs = [ smlnj which ];
+
+ installPhase = ''
+ mkdir -p "$out/bin"
+ cp bin/.heapimg.* "$out/bin/"
+ build/mkexec.sh "${smlnj}/bin/sml" "$out" jonprl
+ '';
+
+ meta = {
+ description = "Proof Refinement Logic - Computational Type Theory";
+ longDescription = ''
+ An proof refinement logic for computational type theory
+ based on Brouwer-realizability & meaning explanations.
+ Inspired by Nuprl
+ '';
+ homepage = http://www.jonprl.org/;
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ puffnfresh ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/applications/science/logic/otter/default.nix b/pkgs/applications/science/logic/otter/default.nix
index 653c5dad03f7..398f6c9a3e22 100644
--- a/pkgs/applications/science/logic/otter/default.nix
+++ b/pkgs/applications/science/logic/otter/default.nix
@@ -20,9 +20,9 @@ stdenv.mkDerivation {
buildPhase = ''
find . -name Makefile | xargs sed -i -e "s@/bin/rm@$(type -P rm)@g"
find . -name Makefile | xargs sed -i -e "s@/bin/mv@$(type -P mv)@g"
- find . -perm +111 -type f | xargs sed -i -e "s@/bin/csh@$(type -P csh)@g"
- find . -perm +111 -type f | xargs sed -i -e "s@/bin/rm@$(type -P rm)@g"
- find . -perm +111 -type f | xargs sed -i -e "s@/bin/mv@$(type -P mv)@g"
+ find . -perm -0100 -type f | xargs sed -i -e "s@/bin/csh@$(type -P csh)@g"
+ find . -perm -0100 -type f | xargs sed -i -e "s@/bin/rm@$(type -P rm)@g"
+ find . -perm -0100 -type f | xargs sed -i -e "s@/bin/mv@$(type -P mv)@g"
sed -i -e "s/^XLIBS *=.*/XLIBS=-lXaw -lXt -lX11/" source/formed/Makefile
diff --git a/pkgs/applications/science/math/content/default.nix b/pkgs/applications/science/math/content/default.nix
index 177efd667a39..48e20d427d15 100644
--- a/pkgs/applications/science/math/content/default.nix
+++ b/pkgs/applications/science/math/content/default.nix
@@ -1,10 +1,10 @@
-a :
-let
+a @ { mesa, lesstif, libX11, libXaw, xproto, libXt, libSM, libICE, libXmu, libXext, libXcursor, ... } :
+let
fetchurl = a.fetchurl;
- version = "1.5";
+ version = "1.5";
buildInputs = with a; [
- mesa lesstif libX11 libXaw xproto libXt libSM libICE
+ mesa lesstif libX11 libXaw xproto libXt libSM libICE
libXmu libXext libXcursor
];
in
@@ -28,9 +28,9 @@ rec {
configureFlags = [];
/* doConfigure should be removed if not needed */
- phaseNames = ["unpackTarballs"
+ phaseNames = ["unpackTarballs"
"setPlatform" "extraVars"
- "buildVibrant" "buildContent"
+ "buildVibrant" "buildContent"
"install"];
unpackTarballs = a.fullDepEntry (''
@@ -42,10 +42,10 @@ rec {
sed -e s/SGI=/SGI=no/ -i content/makefile_v
'') ["minInit"];
- platformTLAContent = if a.stdenv.isLinux then "LIN" else
+ platformTLAContent = if a.stdenv.isLinux then "LIN" else
throw "Three-letter code for the platform is not known";
- platformTLAVibrant = if a.stdenv.isLinux then "lnx" else
+ platformTLAVibrant = if a.stdenv.isLinux then "lnx" else
throw "Three-letter code for the platform is not known";
setPlatform = a.fullDepEntry (''
@@ -82,7 +82,7 @@ rec {
find . -name '*.so' -exec cp '{}' $out/lib ';'
find . -name '*.txt' -exec cp '{}' $out/share/${name}/doc ';'
find . -name '*.hlp' -exec cp '{}' $out/share/${name}/doc ';'
- find . -perm +111 -a ! -name '*.*' -exec cp '{}' $out/bin ';'
+ find . -perm -0100 -a ! -name '*.*' -exec cp '{}' $out/bin ';'
cp -r . $out/share/${name}/build-snapshot
'') ["buildContent" "defEnsureDir" "minInit"];
diff --git a/pkgs/applications/science/math/csdp/default.nix b/pkgs/applications/science/math/csdp/default.nix
new file mode 100644
index 000000000000..64fa4579949d
--- /dev/null
+++ b/pkgs/applications/science/math/csdp/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchurl, blas, gfortran, liblapack }:
+
+stdenv.mkDerivation {
+ name = "csdp-6.1.1";
+
+ src = fetchurl {
+ url = "http://www.coin-or.org/download/source/Csdp/Csdp-6.1.1.tgz";
+ sha256 = "1f9ql6cjy2gwiyc51ylfan24v1ca9sjajxkbhszlds1lqmma8n05";
+ };
+
+ buildInputs = [ blas gfortran liblapack ];
+
+ postPatch = ''
+ substituteInPlace Makefile --replace /usr/local/bin $out/bin
+ '';
+
+ preInstall = ''
+ mkdir -p $out/bin
+ '';
+
+ meta = {
+ homepage = https://projects.coin-or.org/Csdp;
+ license = lib.licenses.cpl10;
+ maintainers = [ lib.maintainers.roconnor ];
+ description = "A C Library for Semidefinite Programming";
+ };
+}
diff --git a/pkgs/applications/science/math/mathematica/9.nix b/pkgs/applications/science/math/mathematica/9.nix
index c9357d7352f0..3c7f758d91bc 100644
--- a/pkgs/applications/science/math/mathematica/9.nix
+++ b/pkgs/applications/science/math/mathematica/9.nix
@@ -86,7 +86,7 @@ stdenv.mkDerivation rec {
preFixup = ''
echo "=== PatchElfing away ==="
- find $out/libexec/Mathematica/SystemFiles -type f -perm +100 | while read f; do
+ find $out/libexec/Mathematica/SystemFiles -type f -perm -0100 | while read f; do
type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/')
if [ -z "$type" ]; then
:
diff --git a/pkgs/applications/science/math/mathematica/default.nix b/pkgs/applications/science/math/mathematica/default.nix
index 5fc704178836..39f2409a987c 100644
--- a/pkgs/applications/science/math/mathematica/default.nix
+++ b/pkgs/applications/science/math/mathematica/default.nix
@@ -96,7 +96,7 @@ stdenv.mkDerivation rec {
preFixup = ''
echo "=== PatchElfing away ==="
- find $out/libexec/Mathematica/SystemFiles -type f -perm +100 | while read f; do
+ find $out/libexec/Mathematica/SystemFiles -type f -perm -0100 | while read f; do
type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/')
if [ -z "$type" ]; then
:
diff --git a/pkgs/applications/science/math/perseus/default.nix b/pkgs/applications/science/math/perseus/default.nix
new file mode 100644
index 000000000000..94029a043492
--- /dev/null
+++ b/pkgs/applications/science/math/perseus/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, unzip, gcc48 }:
+
+stdenv.mkDerivation {
+ name = "perseus-4-beta";
+ version = "4-beta";
+ buildInputs = [unzip gcc48];
+
+ src = fetchurl {
+ url = "http://www.sas.upenn.edu/~vnanda/source/perseus_4_beta.zip";
+ sha256 = "09brijnqabhgfjlj5wny0bqm5dwqcfkp1x5wif6yzdmqh080jybj";
+ };
+
+ sourceRoot = ".";
+
+ buildPhase = ''
+ g++ Pers.cpp -O3 -o perseus
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp perseus $out/bin
+ '';
+
+ meta = {
+ description = "The Persistent Homology Software";
+ longDescription = ''
+ Persistent homology - or simply, persistence - is an algebraic
+ topological invariant of a filtered cell complex. Perseus
+ computes this invariant for a wide class of filtrations built
+ around datasets arising from point samples, images, distance
+ matrices and so forth.
+ '';
+ homepage = "www.sas.upenn.edu/~vnanda/perseus/index.html";
+ license = stdenv.lib.licenses.gpl3;
+ maintainers = with stdenv.lib.maintainers; [erikryb];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/applications/science/spyder/default.nix b/pkgs/applications/science/spyder/default.nix
index c068847c331b..382a5cb5532a 100644
--- a/pkgs/applications/science/spyder/default.nix
+++ b/pkgs/applications/science/spyder/default.nix
@@ -58,6 +58,6 @@ buildPythonPackage rec {
homepage = https://github.com/spyder-ide/spyder/;
license = licenses.mit;
platforms = platforms.linux;
- maintainers = [ maintainers.bjornfor ];
+ maintainers = with maintainers; [ bjornfor fridh ];
};
}
diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix
index b8bce1c9eb56..12ca1434466b 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -1,7 +1,7 @@
-/* moving all git tools into one attribute set because git is unlikely to be
- * referenced by other packages and you can get a fast overview.
-*/
-args: with args; with pkgs;
+/* All git-relates tools live here, in a separate attribute set so that users
+ * can get a fast overview over what's available.
+ */
+args @ {pkgs}: with args; with pkgs;
let
inherit (pkgs) stdenv fetchgit fetchurl subversion;
@@ -46,7 +46,7 @@ rec {
sendEmailSupport = !stdenv.isDarwin;
};
- inherit (pkgs.haskellPackages) git-annex;
+ git-annex = pkgs.haskellPackages.git-annex-with-assistant;
gitAnnex = git-annex;
qgit = import ./qgit {
@@ -96,6 +96,8 @@ rec {
gitflow = callPackage ./gitflow { };
+ git-radar = callPackage ./git-radar { };
+
git-remote-hg = callPackage ./git-remote-hg { };
gitRemoteGcrypt = callPackage ./git-remote-gcrypt { };
diff --git a/pkgs/applications/version-management/git-and-tools/git-radar/default.nix b/pkgs/applications/version-management/git-and-tools/git-radar/default.nix
new file mode 100644
index 000000000000..5cca8ebef3c7
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/git-radar/default.nix
@@ -0,0 +1,31 @@
+{stdenv, fetchFromGitHub}:
+
+stdenv.mkDerivation rec {
+ name = "git-radar-${version}";
+ version = "0.3.2";
+
+ phases = [ "unpackPhase" "installPhase" ];
+
+ dontInstallSrc = true;
+
+ src = fetchFromGitHub {
+ owner = "michaeldfallen";
+ repo = "git-radar";
+ rev = "v${version}";
+ sha256 = "1028462b4kqxx66vjv7r8nnr6bi3kw11fixpqyg2srqriha6447p";
+ };
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp git-radar fetch.sh prompt.bash prompt.zsh radar-base.sh $out
+ ln -s $out/git-radar $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/michaeldfallen/git-radar;
+ license = licenses.mit;
+ description = "Git-radar is a tool you can add to your prompt to provide at-a-glance information on your git repo.";
+ platforms = with platforms; linux ++ darwin;
+ maintainers = with maintainers; [ kamilchm ];
+ };
+}
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index fce2d07c9eea..2c29ce82de56 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -9,7 +9,7 @@
}:
let
- version = "2.5.1";
+ version = "2.5.2";
svn = subversionClient.override { perlBindings = true; };
in
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
- sha256 = "03r2shbya0g3adya336jpc6kcn2s0fmn5p5bs1s8q6r232qvgkmk";
+ sha256 = "16qcli3cip1ixbrxrb3hhvvgx6ppy4anig83wz7aqlfy1sln0isb";
};
patches = [
diff --git a/pkgs/applications/version-management/git-repo/default.nix b/pkgs/applications/version-management/git-repo/default.nix
index a697aaa08a1a..dc5c2231a7a1 100644
--- a/pkgs/applications/version-management/git-repo/default.nix
+++ b/pkgs/applications/version-management/git-repo/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, python }:
stdenv.mkDerivation {
- name = "git-repo-1.21";
+ name = "git-repo-1.22";
src = fetchurl {
# I could not find a versioned url for the 1.21 version. In case
# the sha mismatches, check the homepage for new version and sha.
url = "http://commondatastorage.googleapis.com/git-repo-downloads/repo";
- sha1 = "b8bd1804f432ecf1bab730949c82b93b0fc5fede";
+ sha1 = "da0514e484f74648a890c0467d61ca415379f791";
};
unpackPhase = "true";
@@ -20,4 +20,4 @@ stdenv.mkDerivation {
homepage = "http://source.android.com/source/downloading.html";
description = "Android's repo management tool";
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/applications/version-management/monotone-viz/mtn-head.nix b/pkgs/applications/version-management/monotone-viz/mtn-head.nix
index b9a2daade5b5..eb75b45128e3 100644
--- a/pkgs/applications/version-management/monotone-viz/mtn-head.nix
+++ b/pkgs/applications/version-management/monotone-viz/mtn-head.nix
@@ -1,4 +1,4 @@
-args : with args;
+args @ { graphviz, pkgconfig, autoconf, automake, libtool, glib, gtk, ... }: with args;
rec {
srcDrv = fetchmtn {
name = "monotone-viz-mtn-checkout";
@@ -9,7 +9,7 @@ rec {
};
src = srcDrv + "/";
- buildInputs = [ocaml lablgtk libgnomecanvas gtk graphviz glib
+ buildInputs = [ocaml lablgtk libgnomecanvas gtk graphviz glib
pkgconfig autoconf automake libtool];
configureFlags = ["--with-lablgtk-dir=$(echo ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2)"];
diff --git a/pkgs/applications/version-management/rabbitvcs/default.nix b/pkgs/applications/version-management/rabbitvcs/default.nix
new file mode 100644
index 000000000000..100e854f29b8
--- /dev/null
+++ b/pkgs/applications/version-management/rabbitvcs/default.nix
@@ -0,0 +1,40 @@
+{ fetchFromGitHub, lib, python2Packages, meld, subversion, gvfs, xdg_utils }:
+python2Packages.buildPythonPackage rec {
+ name = "rabbitvcs-${version}";
+ version = "0.16";
+ namePrefix = "";
+
+ src = fetchFromGitHub {
+ owner = "rabbitvcs";
+ repo = "rabbitvcs";
+ rev = "v${version}";
+ sha256 = "0964pdylrx4n9c9l8ncwv4q1p63y4hadb5v4pgvm0m2fah2jlkly";
+ };
+
+ pythonPath = with python2Packages; [ configobj dbus pygobject pygtk simplejson pysvn dulwich tkinter gvfs xdg_utils ];
+
+ prePatch = ''
+ sed -ie 's|if sys\.argv\[1\] == "install":|if False:|' ./setup.py
+ sed -ie "s|PREFIX = sys.prefix|PREFIX = \"$out\"|" ./setup.py
+ sed -ie 's|/usr/bin/meld|${meld}/bin/meld|' ./rabbitvcs/util/configspec/configspec.ini
+ sed -ie 's|/usr/bin/svnadmin|${subversion}/bin/svnadmin|' ./rabbitvcs/ui/create.py
+ sed -ie "s|/usr/share/doc|$out/share/doc|" ./rabbitvcs/ui/about.py
+ sed -ie "s|gnome-open|xdg-open|" ./rabbitvcs/util/helper.py
+ '';
+
+ outputs = [ "out" "cli" ];
+
+ postInstall = ''
+ mkdir -p $cli/bin
+ cp clients/cli/rabbitvcs $cli/bin
+ wrapPythonProgramsIn $cli "$out $pythonPath"
+ '';
+
+ meta = {
+ description = "Graphical tools for working with version control systems";
+ homepage = http://rabbitvcs.org/;
+ license = lib.licenses.gpl2Plus;
+ platforms = lib.platforms.linux;
+ maintainers = [ lib.maintainers.mathnerd314 ];
+ };
+}
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index ffe68839851a..9e0a093c958f 100644
--- a/pkgs/applications/version-management/subversion/default.nix
+++ b/pkgs/applications/version-management/subversion/default.nix
@@ -17,13 +17,13 @@ assert javahlBindings -> jdk != null && perl != null;
stdenv.mkDerivation (rec {
- version = "1.8.14";
+ version = "1.9.1";
name = "subversion-${version}";
src = fetchurl {
url = "mirror://apache/subversion/${name}.tar.bz2";
- sha1 = "0698efc58373e7657f6dd3ce13cab7b002ffb497";
+ sha1 = "1244a741dbcf24f2b1d165225f0159a0c994e37a";
};
buildInputs = [ zlib apr aprutil sqlite ]
diff --git a/pkgs/applications/version-management/tailor/default.nix b/pkgs/applications/version-management/tailor/default.nix
index f8937f39e769..5164ed6a9b44 100644
--- a/pkgs/applications/version-management/tailor/default.nix
+++ b/pkgs/applications/version-management/tailor/default.nix
@@ -1,4 +1,4 @@
-args : with args;
+args @ { makeWrapper, python, ... }: with args;
let version = if args ? version then args.version else "0.9.35"; in
rec {
src = fetchurl {
@@ -14,10 +14,10 @@ rec {
/* doConfigure should be specified separately */
phaseNames = ["installPythonPackage" "wrapBinContentsPython"];
-
+
name = "tailor-" + version;
meta = {
description = "Version control tools integration tool";
};
}
-
+
diff --git a/pkgs/applications/version-management/viewmtn/0.10.nix b/pkgs/applications/version-management/viewmtn/0.10.nix
index d5e7d1e7c83a..be8cc83c3008 100644
--- a/pkgs/applications/version-management/viewmtn/0.10.nix
+++ b/pkgs/applications/version-management/viewmtn/0.10.nix
@@ -1,5 +1,4 @@
-
-args : with args;
+args @ { monotone, cheetahTemplate, highlight, ctags, makeWrapper, graphviz, which, python, ... }: with args;
rec {
src = fetchurl {
url = http://viewmtn.1erlei.de/downloads/viewmtn-0.10.tgz;
diff --git a/pkgs/applications/video/gnash/default.nix b/pkgs/applications/video/gnash/default.nix
index fc773211f69b..5a170047e8fc 100644
--- a/pkgs/applications/video/gnash/default.nix
+++ b/pkgs/applications/video/gnash/default.nix
@@ -117,5 +117,6 @@ stdenv.mkDerivation rec {
maintainers = [ ];
platforms = stdenv.lib.platforms.gnu;
+ broken = true;
};
} // {mozillaPlugin = "/plugins";}
diff --git a/pkgs/applications/video/pitivi/default.nix b/pkgs/applications/video/pitivi/default.nix
index 743df2647f1a..9515e1186446 100644
--- a/pkgs/applications/video/pitivi/default.nix
+++ b/pkgs/applications/video/pitivi/default.nix
@@ -1,16 +1,16 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, makeWrapper
-, pythonPackages, gst, clutter-gst, clutter-gtk, hicolor_icon_theme
-, gobjectIntrospection, clutter, gtk3, librsvg, gnome3, libnotify
+, python3Packages, gst, clutter-gtk, hicolor_icon_theme
+, gobjectIntrospection, librsvg, gnome3, libnotify
}:
let
- version = "0.93";
+ version = "0.94";
in stdenv.mkDerivation rec {
name = "pitivi-${version}";
src = fetchurl {
url = "mirror://gnome/sources/pitivi/${version}/${name}.tar.xz";
- sha256 = "0z89dwrd7akhkap270i372yszqib8yqcymv78lhdmn3a8bsa7jhp";
+ sha256 = "1v7s0qsibwykkmknspjhpdrj80s987pvbl01kh34k4aspi1hcapm";
};
meta = with stdenv.lib; {
@@ -29,15 +29,15 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ];
buildInputs = [
- gobjectIntrospection clutter-gst clutter-gtk librsvg gnome3.gnome_desktop
+ gobjectIntrospection clutter-gtk librsvg gnome3.gnome_desktop
gnome3.defaultIconTheme
gnome3.gsettings_desktop_schemas libnotify
] ++ (with gst; [
- gstreamer gst-python gst-editing-services
+ gstreamer gst-editing-services
gst-plugins-base gst-plugins-good
gst-plugins-bad gst-plugins-ugly gst-libav
- ]) ++ (with pythonPackages; [
- python pygobject3 pyxdg numpy pycairo sqlite3
+ ]) ++ (with python3Packages; [
+ python pygobject3 gst-python pyxdg numpy pycairo sqlite3
]);
preFixup = ''
diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix
index 45d8c452111f..41d8b5a577db 100644
--- a/pkgs/applications/video/popcorntime/default.nix
+++ b/pkgs/applications/video/popcorntime/default.nix
@@ -1,48 +1,39 @@
-{ lib, stdenv, fetchurl, runCommand, makeWrapper, node_webkit_0_9,
- fromCi ? true,
- build ? "652",
- version ? if fromCi then "0.3.7-2-0ac62b848" else "0.3.7.2"
-}:
+{ lib, stdenv, fetchurl, runCommand, makeWrapper, nwjs, zip }:
let
- config =
- if stdenv.system == "x86_64-linux" then
- {sys = "Linux32";
- sha256 =
- if fromCi then "06av40b68xy2mv2fp9qg8npqmnvkl00p2jvbm2fdfnpc9jj746iy"
- else "0lm9k4fr73a9p00i3xj2ywa4wvjf9csadm0pcz8d6imwwq44sa8b";
- }
- else if stdenv.system == "i686-linux" then
- {sys = "Linux64";
- sha256 =
- if fromCi then "1nr2zaixdr5vqynga7jig3fw9dckcnzcbdmbr8haq4a486x2nq0f"
- else "1dz1cp31qbwamm9pf8ydmzzhnb6d9z73bigdv3y74dgicz3dpr91";
- }
- else throw "Unsupported system ${stdenv.system}";
-
- fetchurlConf =
- let
- ciBase = "https://ci.popcorntime.io/job/Popcorn-Experimental/652/artifact/build/releases/Popcorn-Time";
- relBase = "https://get.popcorntime.io/build";
- in {
- url =
- if fromCi then "${ciBase}/${lib.toLower config.sys}/Popcorn-Time-${version}-${config.sys}.tar.xz"
- else "${relBase}/Popcorn-Time-${version}-Linux64.tar.xz";
- sha256 = config.sha256;
- };
+ version = "0.3.8-3";
popcorntimePackage = stdenv.mkDerivation rec {
- name =
- if fromCi then "popcorntime-git-2015-07-07"
- else "popcorntime-${version}";
- src = fetchurl fetchurlConf;
+ name = "popcorntime-${version}";
+ src = if stdenv.system == "x86_64-linux" then
+ fetchurl {
+ url = "http://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-64.tar.xz";
+ sha256 = "0q8c6m9majgv5a6hjl1b2ndmq4xx05zbarsydhqkivhh9aymvxgm";
+ }
+ else if stdenv.system == "i686-linux" then
+ fetchurl {
+ url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-32.tar.xz";
+ sha256 = "1dz1cp31qbwamm9pf8ydmzzhnb6d9z73bigdv3y74dgicz3dpr92";
+ }
+ else throw "Unsupported system ${stdenv.system}";
+
sourceRoot = ".";
+
+ buildInputs = [ zip ];
+
+ buildPhase = ''
+ rm Popcorn-Time install
+ zip -r package.nw package.json src node_modules
+ cat ${nwjs}/bin/nw package.nw > Popcorn-Time
+ chmod 555 Popcorn-Time
+ '';
+
installPhase = ''
mkdir -p $out
- cp -r *.so *.pak $out/
- cat ${node_webkit_0_9}/bin/nw package.nw > $out/Popcorn-Time
- chmod 555 $out/Popcorn-Time
+ cp -r * $out/
'';
+
+ dontPatchELF = true;
};
in
runCommand "popcorntime-${version}" {
diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix
index ae7f71e607e3..80aa1b3c5c33 100644
--- a/pkgs/applications/video/vlc/default.nix
+++ b/pkgs/applications/video/vlc/default.nix
@@ -6,7 +6,7 @@
, mpeg2dec, udev, gnutls, avahi, libcddb, libjack2, SDL, SDL_image
, libmtp, unzip, taglib, libkate, libtiger, libv4l, samba, liboggz
, libass, libva, libdvbpsi, libdc1394, libraw1394, libopus
-, libvdpau
+, libvdpau, libsamplerate
, onlyLibVLC ? false
, qt4 ? null, qt5 ? null, withQt5 ? false
, jackSupport ? false
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
udev gnutls avahi libcddb SDL SDL_image libmtp unzip taglib
libkate libtiger libv4l samba liboggz libass libdvbpsi libva
xlibs.xlibs xlibs.libXv xlibs.libXvMC xlibs.libXpm xlibs.xcbutilkeysyms
- libdc1394 libraw1394 libopus libebml libmatroska libvdpau
+ libdc1394 libraw1394 libopus libebml libmatroska libvdpau libsamplerate
]
++ (if withQt5 then with qt5; [ base ] else [qt4])
++ optional jackSupport libjack2;
@@ -47,6 +47,7 @@ stdenv.mkDerivation rec {
"--enable-ncurses"
"--enable-vdpau"
"--enable-dvdnav"
+ "--enable-samplerate"
]
++ optional onlyLibVLC "--disable-vlc";
diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix
index 465819949108..1bedb404a2a9 100644
--- a/pkgs/applications/virtualization/qemu/default.nix
+++ b/pkgs/applications/virtualization/qemu/default.nix
@@ -11,17 +11,17 @@
with stdenv.lib;
let
- n = "qemu-2.4.0";
+ version = "2.4.0";
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
+ optionalString pulseSupport "pa,"
+ optionalString sdlSupport "sdl,";
in
stdenv.mkDerivation rec {
- name = n + (if x86Only then "-x86-only" else "");
+ name = "qemu-" + stdenv.lib.optionalString x86Only "x86-only-" + version;
src = fetchurl {
- url = "http://wiki.qemu.org/download/${n}.tar.bz2";
+ url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
sha256 = "0836gqv5zcl0xswwjcns3mlkn18lyz2fiq8rl1ihcm6cpf8vkc3j";
};
diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix
index 9112337d0a46..9136bba02155 100644
--- a/pkgs/applications/virtualization/virtualbox/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, lib, iasl, dev86, pam, libxslt, libxml2, libX11, xproto, libXext
, libXcursor, libXmu, qt4, libIDL, SDL, libcap, zlib, libpng, glib, kernel, lvm2
-, which, alsaLib, curl, libvpx, gawk, nettools
+, which, alsaLib, curl, libvpx, gawk, nettools, dbus
, xorriso, makeself, perl, pkgconfig, nukeReferences
, javaBindings ? false, jdk ? null
, pythonBindings ? false, python ? null
@@ -14,7 +14,11 @@ with stdenv.lib;
let
buildType = "release";
- version = "5.0.0"; # changes ./guest-additions as well
+ # When changing this, update ./guest-additions and the extpack
+ # revision/hash as well. See
+ # http://download.virtualbox.org/virtualbox/${version}/SHA256SUMS
+ # for hashes.
+ version = "5.0.4";
forEachModule = action: ''
for mod in \
@@ -35,13 +39,12 @@ let
'';
# See https://github.com/NixOS/nixpkgs/issues/672 for details
- extpackRevision = "101573";
+ extpackRevision = "102546";
extensionPack = requireFile rec {
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}.vbox-extpack";
# IMPORTANT: Hash must be base16 encoded because it's used as an input to
# VBoxExtPackHelperApp!
- # Tip: see http://dlc.sun.com.edgesuite.net/virtualbox/4.3.10/SHA256SUMS
- sha256 = "c357e36368883df821ed092d261890a95c75e50422b75848c40ad20984086a7a";
+ sha256 = "e4618e7847eff7c31426f4639bcd83c37bd817147081d3218f21c8e7b6bc7cfa";
message = ''
In order to use the extension pack, you need to comply with the VirtualBox Personal Use
and Evaluation License (PUEL) by downloading the related binaries from:
@@ -60,7 +63,7 @@ in stdenv.mkDerivation {
src = fetchurl {
url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2";
- sha256 = "bb71356c8f82012c9b5ae16e12302eb111c71ae7b063ada7688fbfa8aa10c2f7";
+ sha256 = "b19e23fc8e71f38aef7c059f44e59fcbff3bb2ce85baa8de81f1629b85f68fcf";
};
buildInputs =
@@ -82,11 +85,14 @@ in stdenv.mkDerivation {
ls kBuild/bin/linux.amd64/k* tools/linux.amd64/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2
find . -type f -iname '*makefile*' -exec sed -i -e 's/depmod -a/:/g' {} +
sed -i -e '
- s@"libasound.so.2"@"${alsaLib}/lib/libasound.so.2"@g
+ s@"libdbus-1\.so\.3"@"${dbus}/lib/libdbus-1.so.3"@g
+ s@"libasound\.so\.2"@"${alsaLib}/lib/libasound.so.2"@g
${optionalString pulseSupport ''
- s@"libpulse.so.0"@"${libpulseaudio}/lib/libpulse.so.0"@g
+ s@"libpulse\.so\.0"@"${libpulseaudio}/lib/libpulse.so.0"@g
''}
- ' src/VBox/Main/xml/Settings.cpp src/VBox/Devices/Audio/{alsa,pulse}_stubs.c
+ ' src/VBox/Main/xml/Settings.cpp \
+ src/VBox/Devices/Audio/{alsa,pulse}_stubs.c \
+ include/VBox/dbus-calls.h
export USER=nix
set +x
'';
diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
index 6bf0ef2e8258..76cc8c080caa 100644
--- a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso";
- sha256 = "7b61f523db7ba75aebc4c7bb0cae2da92674fa72299e4a006c5c67517f7d786b";
+ sha256 = "de4abc28832d4e96b826efef3e7e69e69d6b941babfdc6317185f1fd6e22ffcf";
};
KERN_DIR = "${kernel.dev}/lib/modules/*/build";
diff --git a/pkgs/applications/virtualization/xhyve/default.nix b/pkgs/applications/virtualization/xhyve/default.nix
index 9941d34bc896..b7205ac000e2 100644
--- a/pkgs/applications/virtualization/xhyve/default.nix
+++ b/pkgs/applications/virtualization/xhyve/default.nix
@@ -2,14 +2,17 @@
stdenv.mkDerivation rec {
name = "xhyve-${version}";
- version = "0.1.0";
+ version = "0.2.0";
src = fetchurl {
url = "https://github.com/mist64/xhyve/archive/v${version}.tar.gz";
- sha256 = "0nbb9zy4iqmdz2dpyvcl1ynimrrpyd6f6cq8y2p78n1lmgqhrgkm";
+ sha256 = "0g1vknnh88kxc8aaqv3j9wqhq45mm9xxxbn1vcrypj3kk9991hrj";
};
- buildFlags = "CFLAGS=-Wno-pedantic -Wno-shift-sign-overflow";
+ # Don't use git to determine version
+ buildFlags = ''
+ CFLAGS=-DVERSION=\"${version}\"
+ '';
installPhase = ''
mkdir -p $out/bin
@@ -19,7 +22,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Lightweight Virtualization on OS X Based on bhyve";
homepage = "https://github.com/mist64/xhyve";
- maintainers = lib.maintainers.lnl7;
+ maintainers = [ lib.maintainers.lnl7 ];
platforms = lib.platforms.darwin;
};
}
diff --git a/pkgs/applications/window-managers/herbstluftwm/default.nix b/pkgs/applications/window-managers/herbstluftwm/default.nix
index c4b265f4b41a..8b6422df8284 100644
--- a/pkgs/applications/window-managers/herbstluftwm/default.nix
+++ b/pkgs/applications/window-managers/herbstluftwm/default.nix
@@ -9,9 +9,10 @@ stdenv.mkDerivation rec {
};
patchPhase = ''
- sed -i -e "s:/usr/local:$\{out}:" \
- -e "s:/etc:$\{out}/etc:" \
- config.mk
+ substituteInPlace config.mk \
+ --replace "/usr/local" "$out" \
+ --replace "/etc" "$out/etc" \
+ --replace "/zsh/functions/Completion/X" "/zsh/site-functions"
'';
buildInputs = [ pkgconfig glib libX11 libXext libXinerama ];
diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix
index b5029d3c1416..9ac17566b948 100644
--- a/pkgs/applications/window-managers/i3/default.nix
+++ b/pkgs/applications/window-managers/i3/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "i3-${version}";
- version = "4.10.2";
+ version = "4.10.4";
src = fetchurl {
url = "http://i3wm.org/downloads/${name}.tar.bz2";
- sha256 = "1n6grkpv5rsn9zgg8if76mmg85w1asbm3rpplxyn6fzr8wds7587";
+ sha256 = "0pk580jkv7cxmsrr276q25fgdbrkzldiiz4ny61szzmqqnjsfkyx";
};
buildInputs = [
diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix
index 91fff3335ec2..099a2523fb4d 100644
--- a/pkgs/applications/window-managers/i3/lock.nix
+++ b/pkgs/applications/window-managers/i3/lock.nix
@@ -2,11 +2,11 @@
pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
stdenv.mkDerivation rec {
- name = "i3lock-2.6";
+ name = "i3lock-2.7";
src = fetchurl {
url = "http://i3wm.org/i3lock/${name}.tar.bz2";
- sha256 = "0aj0an8fwv66jhda499r3xa00546cc9ja1dk8xpc6sy6xygqjbf0";
+ sha256 = "1qlgafbyqjpqdfs50f2y0xphn2jdigafkqqsmpikk97cs0z1i0k8";
};
buildInputs = [ which pkgconfig libxcb xcbutilkeysyms xcbutilimage pam libX11
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A simple screen locker like slock";
homepage = http://i3wm.org/i3lock/;
- maintainers = with maintainers; [ garbas malyn ];
+ maintainers = with maintainers; [ garbas malyn iElectric ];
license = licenses.bsd3;
platforms = platforms.all;
};
diff --git a/pkgs/build-support/buildenv/builder.pl b/pkgs/build-support/buildenv/builder.pl
index a272a84261e4..fd8098caf13c 100755
--- a/pkgs/build-support/buildenv/builder.pl
+++ b/pkgs/build-support/buildenv/builder.pl
@@ -142,10 +142,11 @@ while (scalar(keys %postponed) > 0) {
# Create the symlinks.
+my $extraPrefix = $ENV{"extraPrefix"};
my $nrLinks = 0;
foreach my $relName (sort keys %symlinks) {
my ($target, $priority) = @{$symlinks{$relName}};
- my $abs = "$out/$relName";
+ my $abs = "$out" . "$extraPrefix" . "/$relName";
next unless isInPathsToLink $relName;
if ($target eq "") {
#print "creating directory $relName\n";
diff --git a/pkgs/build-support/buildenv/default.nix b/pkgs/build-support/buildenv/default.nix
index 2ae8123faca4..8cbf0dc6c8e4 100644
--- a/pkgs/build-support/buildenv/default.nix
+++ b/pkgs/build-support/buildenv/default.nix
@@ -21,14 +21,20 @@
# directories in the list is not symlinked.
pathsToLink ? ["/"]
-, # Shell command to run after building the symlink tree.
+, # Root the result in directory "$out${extraPrefix}", e.g. "/share".
+ extraPrefix ? ""
+
+, # Shell commands to run after building the symlink tree.
postBuild ? ""
+, # Additional inputs. Handy e.g. if using makeWrapper in `postBuild`.
+ buildInputs ? []
+
, passthru ? {}
}:
runCommand name
- { inherit manifest ignoreCollisions passthru pathsToLink postBuild;
+ { inherit manifest ignoreCollisions passthru pathsToLink extraPrefix postBuild buildInputs;
pkgs = builtins.toJSON (map (drv: {
paths = [ drv ]; # FIXME: handle multiple outputs
priority = drv.meta.priority or 5;
diff --git a/pkgs/build-support/builder-defs/builder-defs.nix b/pkgs/build-support/builder-defs/builder-defs.nix
index e7c64501614c..551ed9ea57e8 100644
--- a/pkgs/build-support/builder-defs/builder-defs.nix
+++ b/pkgs/build-support/builder-defs/builder-defs.nix
@@ -1,26 +1,26 @@
-args: with args; with stringsWithDeps; with lib;
+args @ {stringsWithDeps, lib, stdenv, writeScript, fetchurl, fetchmtn, fetchgit, ...}: with args; with stringsWithDeps; with lib;
let inherit (builtins) head tail trace; in
(rec
{
- inherit writeScript;
+ inherit writeScript;
src = attrByPath ["src"] "" args;
addSbinPath = attrByPath ["addSbinPath"] false args;
forceShare = if args ? forceShare then args.forceShare else ["man" "doc" "info"];
- forceCopy = ["COPYING" "LICENSE" "DISTRIBUTION" "LEGAL"
- "README" "AUTHORS" "ChangeLog" "CHANGES" "LICENCE" "COPYRIGHT"] ++
- (optional (attrByPath ["forceCopyDoc"] true args) "doc");
+ forceCopy = ["COPYING" "LICENSE" "DISTRIBUTION" "LEGAL"
+ "README" "AUTHORS" "ChangeLog" "CHANGES" "LICENCE" "COPYRIGHT"] ++
+ (optional (attrByPath ["forceCopyDoc"] true args) "doc");
hasSuffixHack = a: b: hasSuffix (a+(substring 0 0 b)) ((substring 0 0 a)+b);
-
- archiveType = s:
+
+ archiveType = s:
(if hasSuffixHack ".tar" s then "tar"
- else if (hasSuffixHack ".tar.gz" s) || (hasSuffixHack ".tgz" s) then "tgz"
- else if (hasSuffixHack ".tar.bz2" s) || (hasSuffixHack ".tbz2" s) ||
+ else if (hasSuffixHack ".tar.gz" s) || (hasSuffixHack ".tgz" s) then "tgz"
+ else if (hasSuffixHack ".tar.bz2" s) || (hasSuffixHack ".tbz2" s) ||
(hasSuffixHack ".tbz" s) then "tbz2"
- else if hasSuffixHack ".tar.Z" s then "tZ"
+ else if hasSuffixHack ".tar.Z" s then "tZ"
else if hasSuffixHack ".tar.lzma" s then "tar.lzma"
else if hasSuffixHack ".tar.xz" s then "tar.xz"
else if hasSuffixHack ".rar" s then "rar"
@@ -569,7 +569,7 @@ let inherit (builtins) head tail trace; in
# Interpreters that are already in the store are left untouched.
echo "patching script interpreter paths"
local f
- for f in $(find "${dir}" -xtype f -perm /0100); do
+ for f in $(find "${dir}" -xtype f -perm -0100); do
local oldPath=$(sed -ne '1 s,^#![ ]*\([^ ]*\).*$,\1,p' "$f")
if test -n "$oldPath" -a "''${oldPath:0:''${#NIX_STORE}}" != "$NIX_STORE"; then
local newPath=$(type -P $(basename $oldPath) || true)
diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix
index 8965fc6bef0c..9822b1a026a1 100644
--- a/pkgs/build-support/cc-wrapper/default.nix
+++ b/pkgs/build-support/cc-wrapper/default.nix
@@ -244,7 +244,7 @@ stdenv.mkDerivation {
if stdenv.isArm then "ld-linux*.so.3" else
if stdenv.system == "powerpc-linux" then "ld.so.1" else
if stdenv.system == "mips64el-linux" then "ld.so.1" else
- if stdenv.system == "x86_64-darwin" then "${dyld}/lib/dyld" else
+ if stdenv.system == "x86_64-darwin" then "/usr/lib/dyld" else
abort "Don't know the name of the dynamic linker for this platform.")
else "";
diff --git a/pkgs/build-support/emacs/trivial.nix b/pkgs/build-support/emacs/trivial.nix
index 9c97e8bf9514..98463c56ba96 100644
--- a/pkgs/build-support/emacs/trivial.nix
+++ b/pkgs/build-support/emacs/trivial.nix
@@ -1,6 +1,6 @@
# trivial builder for Emacs packages
-{ lib, ... }@envargs:
+{ lib, stdenv, texinfo, ... }@envargs:
with lib;
diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git
index ceedf313f28e..22d46257075e 100755
--- a/pkgs/build-support/fetchgit/nix-prefetch-git
+++ b/pkgs/build-support/fetchgit/nix-prefetch-git
@@ -109,7 +109,7 @@ checkout_hash(){
hash=$(hash_from_ref $ref)
fi
- git fetch ${builder:+--progress} origin || return 1
+ git fetch -t ${builder:+--progress} origin || return 1
git checkout -b $branchName $hash || return 1
}
diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix
index cf986a064d9d..14b4d6fc9a27 100644
--- a/pkgs/build-support/fetchurl/mirrors.nix
+++ b/pkgs/build-support/fetchurl/mirrors.nix
@@ -173,6 +173,7 @@ rec {
# Debian.
debian = [
+ http://httpredir.debian.org/debian/
ftp://ftp.au.debian.org/debian/
ftp://ftp.de.debian.org/debian/
ftp://ftp.es.debian.org/debian/
diff --git a/pkgs/build-support/setup-hooks/patch-shebangs.sh b/pkgs/build-support/setup-hooks/patch-shebangs.sh
index 44ebad0d593b..152755992f68 100644
--- a/pkgs/build-support/setup-hooks/patch-shebangs.sh
+++ b/pkgs/build-support/setup-hooks/patch-shebangs.sh
@@ -18,7 +18,7 @@ patchShebangs() {
local oldInterpreterLine
local newInterpreterLine
- find "$dir" -type f -perm /0100 | while read f; do
+ find "$dir" -type f -perm -0100 | while read f; do
if [ "$(head -1 "$f" | head -c +2)" != '#!' ]; then
# missing shebang => not a script
continue
diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh
new file mode 100644
index 000000000000..636918992090
--- /dev/null
+++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh
@@ -0,0 +1,37 @@
+export NIX_LDFLAGS+=" --build-id"
+export NIX_CFLAGS_COMPILE+=" -ggdb"
+dontStrip=1
+
+fixupOutputHooks+=(_separateDebugInfo)
+
+_separateDebugInfo() {
+ local dst="${debug:-$out}"
+ if [ "$prefix" = "$dst" ]; then return; fi
+
+ dst="$dst/lib/debug/.build-id"
+
+ # Find executables and dynamic libraries.
+ local -a files=($(find "$prefix" -type f -a \( -perm /0100 -o -name "*.so" -o -name "*.so.*" \)))
+
+ local i magic
+ for i in "${files[@]}"; do
+ # Skip non-ELF files.
+ exec 10< "$i"
+ read -n 4 -u 10 magic
+ if [[ "$magic" =~ ELF ]]; then echo FOO; fi
+ exec 10<&-
+
+ # Extract the Build ID. FIXME: there's probably a cleaner way.
+ local id="$(readelf -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')"
+ if [ "${#id}" != 40 ]; then
+ echo "could not find build ID of $i, skipping" >&2
+ continue
+ fi
+
+ # Extract the debug info.
+ header "separating debug info from $i (build ID $id)"
+ mkdir -p "$dst/${id:0:2}"
+ objcopy --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug"
+ strip --strip-debug "$i"
+ done
+}
diff --git a/pkgs/data/fonts/fontWrap/default.nix b/pkgs/data/fonts/fontWrap/default.nix
index a7bf1ce0ce90..9a65c0cde302 100644
--- a/pkgs/data/fonts/fontWrap/default.nix
+++ b/pkgs/data/fonts/fontWrap/default.nix
@@ -1,4 +1,5 @@
-args : with args;
+args @ { fetchurl, stdenv, builderDefs, paths, mkfontdir, mkfontscale }:
+with args;
let localDefs = builderDefs.passthru.function {
src =""; /* put a fetchurl here */
buildInputs = [mkfontdir mkfontscale];
diff --git a/pkgs/data/fonts/hack/default.nix b/pkgs/data/fonts/hack/default.nix
new file mode 100644
index 000000000000..522847a52418
--- /dev/null
+++ b/pkgs/data/fonts/hack/default.nix
@@ -0,0 +1,49 @@
+{ stdenv, fetchurl, unzip }:
+
+let version = "2.013"; in
+stdenv.mkDerivation {
+ name = "hack-font-${version}";
+
+ src = let
+ version_ = with stdenv.lib;
+ concatStringsSep "_" (splitString "." version);
+ in fetchurl {
+ sha256 = "16lap1796baiyn50fag3gszv7l1c5v62pvlr57ww501ka024gnnk";
+ url = "https://github.com/chrissimpkins/Hack/releases/download/v${version}/Hack-v${version_}-ttf.zip";
+ };
+
+ sourceRoot = ".";
+
+ nativeBuildInputs = [ unzip ];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/hack
+ cp *.ttf $out/share/fonts/hack
+ '';
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "A typeface designed for source code";
+ longDescription = ''
+ Hack is hand groomed and optically balanced to be a workhorse face for
+ code. It has deep roots in the libre, open source typeface community and
+ expands upon the contributions of the Bitstream Vera & DejaVu projects.
+ The face has been re-designed with a larger glyph set, modifications of
+ the original glyph shapes, and meticulous attention to metrics.
+ '';
+ homepage = http://sourcefoundry.org/hack/;
+
+ /*
+ "The font binaries are released under a license that permits unlimited
+ print, desktop, and web use for commercial and non-commercial
+ applications. It may be embedded and distributed in documents and
+ applications. The source is released in the widely supported UFO format
+ and may be modified to derive new typeface branches. The full text of
+ the license is available in LICENSE.md" (From the GitHub page)
+ */
+ license = licenses.free;
+
+ platforms = platforms.all;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/data/fonts/libertine/default.nix b/pkgs/data/fonts/libertine/default.nix
index b8c0db222d5f..eb28521a2b8a 100644
--- a/pkgs/data/fonts/libertine/default.nix
+++ b/pkgs/data/fonts/libertine/default.nix
@@ -1,4 +1,4 @@
-args: with args; rec {
+args @ { fetchurl, fontforge, lib, ... }: with args; rec {
name = "linux-libertine-5.3.0";
src = fetchurl {
diff --git a/pkgs/data/fonts/noto-fonts/default.nix b/pkgs/data/fonts/noto-fonts/default.nix
new file mode 100644
index 000000000000..bb07596ab974
--- /dev/null
+++ b/pkgs/data/fonts/noto-fonts/default.nix
@@ -0,0 +1,128 @@
+{ stdenv, fetchurl, fetchFromGitHub, optipng, cairo, unzip, fontforge, pythonPackages, pkgconfig }:
+rec {
+ # 18MB
+ noto-fonts = let version = "git-2015-09-08"; in stdenv.mkDerivation {
+ name = "noto-fonts-${version}";
+ src = fetchFromGitHub {
+ owner = "googlei18n";
+ repo = "noto-fonts";
+ rev = "9d677e7e47a13f6e88052833277783fe4f27671f";
+ sha256 = "1dw1142znlk19a4mzhfi9pg3jzmz8pl1ivix7sd2grg70vxscxqc";
+ };
+ phases = "unpackPhase installPhase";
+ installPhase = ''
+ mkdir -p $out/share/fonts/noto
+ cp hinted/*.ttf $out/share/fonts/noto
+ # Also copy unhinted & alpha fonts for better glyph coverage,
+ # if they don't have a hinted version
+ # (see https://groups.google.com/d/msg/noto-font/ZJSkZta4n5Y/tZBnLcPdbS0J)
+ cp -n unhinted/*.ttf $out/share/fonts/noto
+ cp -n alpha/*.ttf $out/share/fonts/noto
+ '';
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Beautiful and free fonts for many languages";
+ homepage = https://www.google.com/get/noto/;
+ longDescription =
+ ''
+ When text is rendered by a computer, sometimes characters are displayed as
+ “tofu”. They are little boxes to indicate your device doesn’t have a font to
+ display the text.
+
+ Google has been developing a font family called Noto, which aims to support all
+ languages with a harmonious look and feel. Noto is Google’s answer to tofu. The
+ name noto is to convey the idea that Google’s goal is to see “no more tofu”.
+ Noto has multiple styles and weights, and freely available to all.
+
+ This package also includes the Arimo, Cousine, and Tinos fonts.
+ '';
+ license = licenses.asl20;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ mathnerd314 ];
+ };
+ };
+ # 89MB
+ noto-fonts-cjk = let version = "1.004"; in stdenv.mkDerivation {
+ name = "noto-fonts-cjk-${version}";
+
+ src = fetchurl {
+ # Same as https://noto-website.storage.googleapis.com/pkgs/NotoSansCJK.ttc.zip but versioned & with no extra SIL license file
+ url = "https://raw.githubusercontent.com/googlei18n/noto-cjk/40d9f5b179a59a06b98373c76bdc3e2119e4e6b2/NotoSansCJK.ttc.zip";
+ sha256 = "1vg3si6slvk8cklq6s5c76s84kqjc4wvwzr4ysljzjpgzra2rfn6";
+ };
+
+ buildInputs = [ unzip ];
+
+ phases = "unpackPhase installPhase";
+
+ sourceRoot = ".";
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/noto
+ cp *.ttc $out/share/fonts/noto
+ '';
+
+ preferLocalBuild = true;
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Beautiful and free fonts for CJK languages";
+ homepage = https://www.google.com/get/noto/help/cjk/;
+ longDescription =
+ ''
+ Noto Sans CJK is a sans serif typeface designed as an intermediate style
+ between the modern and traditional. It is intended to be a multi-purpose
+ digital font for user interface designs, digital content, reading on laptops,
+ mobile devices, and electronic books. Noto Sans CJK comprehensively covers
+ Simplified Chinese, Traditional Chinese, Japanese, and Korean in a unified font
+ family. It supports regional variants of ideographic characters for each of the
+ four languages. In addition, it supports Japanese kana, vertical forms, and
+ variant characters (itaiji); it supports Korean hangeul — both contemporary and
+ archaic.
+ '';
+ license = licenses.ofl;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ mathnerd314 ];
+ };
+ };
+ # 12MB
+ noto-fonts-emoji = let version = "git-2015-08-17"; in stdenv.mkDerivation {
+ name = "noto-fonts-emoji-${version}";
+
+ src = fetchFromGitHub {
+ owner = "googlei18n";
+ repo = "noto-emoji";
+ rev = "ffd7cfd0c84b7bf37210d0908ac94adfe3259ff2";
+ sha256 = "1pa94gw2y0b6p8r81zbjzcjgi5nrx4dqrqr6mk98wj6jbi465sh2";
+ };
+
+ buildInputs = with pythonPackages; [
+ optipng cairo fontforge python nototools fonttools pkgconfig
+ ];
+
+ #FIXME: perhaps use our pngquant instead
+ preConfigure = ''
+ for f in ./*.py ./third_party/pngquant/configure; do
+ patchShebangs "$f"
+ done
+ '';
+
+ preBuild = ''
+ export PYTHONPATH=$PYTHONPATH:$PWD
+ '';
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/noto
+ cp NotoColorEmoji.ttf NotoEmoji-Regular.ttf $out/share/fonts/noto
+ '';
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Color and Black-and-White emoji fonts";
+ homepage = https://github.com/googlei18n/noto-emoji;
+ license = licenses.asl20;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ mathnerd314 ];
+ };
+ };
+}
diff --git a/pkgs/data/fonts/pecita/default.nix b/pkgs/data/fonts/pecita/default.nix
index 4156fb69069f..d38cb89c9281 100644
--- a/pkgs/data/fonts/pecita/default.nix
+++ b/pkgs/data/fonts/pecita/default.nix
@@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
name = "pecita-${version}";
- version = "5.1";
+ version = "5.2";
src = fetchurl {
- url = "http://pecita.eu/b/Pecita.otf";
- sha256 = "0v2k6vvzl1f809h3lfld6zy5m56w1dn27xmdy3hjniv6j9xbhbs4";
+ url = "http://archive.rycee.net/pecita/${name}.tar.xz";
+ sha256 = "0ryfvxdla5iinwwin4dc1k89hk1bjq2mfdrrv67q6fdgz41l0qf0";
};
- phases = ["installPhase"];
+ phases = ["unpackPhase" "installPhase"];
installPhase = ''
mkdir -p $out/share/fonts/opentype
- cp -v ${src} $out/share/fonts/opentype/Pecita.otf
+ cp -v Pecita.otf $out/share/fonts/opentype/Pecita.otf
'';
meta = with stdenv.lib; {
diff --git a/pkgs/data/fonts/source-han-sans/default.nix b/pkgs/data/fonts/source-han-sans/default.nix
index 9e0bf7505718..2fb4787774f4 100644
--- a/pkgs/data/fonts/source-han-sans/default.nix
+++ b/pkgs/data/fonts/source-han-sans/default.nix
@@ -1,23 +1,29 @@
-{stdenv, fetchurl}:
+{stdenv, fetchurl, unzip}:
let
- makePackage = {language, region, description}: stdenv.mkDerivation rec {
- version = "1.001R";
- name = "source-han-sans-${language}-${version}";
+ makePackage = {variant, language, region, sha256}: stdenv.mkDerivation rec {
+ version = "1.004R";
+ name = "source-han-sans-${variant}-${version}";
+ revision = "5f5311e71cb628321cc0cffb51fb38d862b726aa";
+
+ buildInputs = [ unzip ];
src = fetchurl {
- url = "https://github.com/adobe-fonts/source-han-sans/archive/${version}.tar.gz";
- sha256 = "0cwz3d8jancl0a7vbjxhnh1vgwsjba62lahfjya9yrjkp1ndxlap";
+ url = "https://github.com/adobe-fonts/source-han-sans/raw/${revision}/SubsetOTF/SourceHanSans${region}.zip";
+ inherit sha256;
};
+ setSourceRoot = ''
+ sourceRoot=$( echo SourceHanSans* )
+ '';
+
installPhase = ''
mkdir -p $out/share/fonts/opentype
- cp $( find SubsetOTF/${region} -name '*.otf' ) $out/share/fonts/opentype
+ cp $( find . -name '*.otf' ) $out/share/fonts/opentype
'';
meta = {
- inherit description;
-
+ description = "${language} subset of an open source Pan-CJK typeface";
homepage = https://github.com/adobe-fonts/source-han-sans;
license = stdenv.lib.licenses.asl20;
};
@@ -25,23 +31,27 @@ let
in
{
japanese = makePackage {
- language = "japanese";
+ variant = "japanese";
+ language = "Japanese";
region = "JP";
- description = "Japanese subset of an open source Pan-CJK typeface";
+ sha256 = "0m1zprwqnqp3za42firg53hyzir6p0q73fl8mh5j4px3zgivlvfw";
};
korean = makePackage {
- language = "korean";
+ variant = "korean";
+ language = "Korean";
region = "KR";
- description = "Korean subset of an open source Pan-CJK typeface";
+ sha256 = "1bz6n2sd842vgnqky0i7a3j3i2ixhzzkkbx1m8plk04r1z41bz9q";
};
simplified-chinese = makePackage {
- language = "simplified-chinese";
+ variant = "simplified-chinese";
+ language = "Simplified Chinese";
region = "CN";
- description = "Simplified Chinese subset of an open source Pan-CJK typeface";
+ sha256 = "0ksafcwmnpj3yxkgn8qkqkpw10ivl0nj9n2lsi9c6fw3aa71s3ha";
};
traditional-chinese = makePackage {
- language = "traditional-chinese";
+ variant = "traditional-chinese";
+ language = "Traditional Chinese";
region = "TW";
- description = "Traditional Chinese subset of an open source Pan-CJK typeface";
+ sha256 = "1l4zymd5n4nl9gmja707xq6bar88dxki2mwdixdfrkf544cidflj";
};
}
diff --git a/pkgs/data/icons/numix-icon-theme-circle/default.nix b/pkgs/data/icons/numix-icon-theme-circle/default.nix
index b3413dc4738d..2fad83d9ec3e 100644
--- a/pkgs/data/icons/numix-icon-theme-circle/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-circle/default.nix
@@ -1,17 +1,19 @@
-{ stdenv, fetchurl, unzip }:
+{ stdenv, fetchFromGitHub, unzip }:
stdenv.mkDerivation rec {
- version = "d7e8c4cdcf";
+ version = "4727aa5";
package-name = "numix-icon-theme-circle";
- name = "${package-name}-20150304";
+ name = "${package-name}-20151005";
buildInputs = [ unzip ];
- src = fetchurl {
- url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
- sha256 = "672d6f4d000c4c75a64e0297f9609afab1035d082d7ab4f7abe3e2173cba9324";
+ src = fetchFromGitHub {
+ owner = "numixproject";
+ repo = package-name;
+ rev = version;
+ sha256 = "0khps3il0wyjizzzv8rxznhywp3nqd1hj1zhdvyqzgql3gffylqc";
};
dontBuild = true;
@@ -21,10 +23,11 @@ stdenv.mkDerivation rec {
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/share/icons/
'';
- meta = {
+ meta = with stdenv.lib; {
description = "Numix icon theme (circle version)";
homepage = https://numixproject.org;
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.all;
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ jgeerds ];
};
}
diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix
index 54d4e06be282..6a04e38291a0 100644
--- a/pkgs/data/icons/numix-icon-theme/default.nix
+++ b/pkgs/data/icons/numix-icon-theme/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "2c11fbfcee";
+ version = "ae57260";
package-name = "numix-icon-theme";
- name = "${package-name}-20150302";
+ name = "${package-name}-20150910";
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
- sha256 = "1bjh2j4vqk9s31syv7ig3hwpp5z0n6sx74iz332y0wdz6ngj5x08";
+ sha256 = "147a8d9wkhrq4f4154gb0l16rj849lsccxl8npicr6zixvsjgqlq";
};
dontBuild = true;
@@ -21,10 +21,11 @@ stdenv.mkDerivation rec {
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
'';
- meta = {
+ meta = with stdenv.lib; {
description = "Numix icon theme";
homepage = https://numixproject.org;
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.all;
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo jgeerds ];
};
}
diff --git a/pkgs/data/icons/tango-icon-theme/default.nix b/pkgs/data/icons/tango-icon-theme/default.nix
index 57a6718669bd..b9dfeb76f993 100644
--- a/pkgs/data/icons/tango-icon-theme/default.nix
+++ b/pkgs/data/icons/tango-icon-theme/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchurl, intltool, pkgconfig, iconnamingutils, imagemagick, librsvg }:
+{ stdenv, fetchurl, intltool, pkgconfig, iconnamingutils, imagemagick, librsvg
+, gtk/*any version*/
+}:
stdenv.mkDerivation rec {
name = "tango-icon-theme-0.8.90";
@@ -14,6 +16,8 @@ stdenv.mkDerivation rec {
configureFlags = "--enable-png-creation";
+ postInstall = '''${gtk}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" '';
+
meta = {
description = "A basic set of icons";
homepage = http://tango.freedesktop.org/Tango_Icon_Library;
diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix
index dc68b1ad2fd3..db1f88068913 100644
--- a/pkgs/data/misc/geolite-legacy/default.nix
+++ b/pkgs/data/misc/geolite-legacy/default.nix
@@ -8,7 +8,7 @@ let
# Annoyingly, these files are updated without a change in URL. This means that
# builds will start failing every month or so, until the hashes are updated.
- version = "2015-09-03";
+ version = "2015-09-14";
in
stdenv.mkDerivation {
name = "geolite-legacy-${version}";
@@ -27,10 +27,10 @@ stdenv.mkDerivation {
"0f3y1cpjfd4q55a2kvhzsklmmp6k19v9vsdsjxr4sapc8f5fgfc9";
srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
- "0pg3715cjmajrfr5xad3g9z386gyk35zq3zkk7ah6sfidavik6vc";
+ "1f3jrvh2ivwgvx52r2n62dhyr0gb418q3gzra2108ygdxcm0105h";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
- "1ajk18ydzhwflki25cp7fhzfphysgndig3h0f9p655qhsm0c3gzj";
+ "16kvbv63l7cn7032b3gvpzjcb5w9fliyrwirn8sxyad8gywkxznw";
meta = with stdenv.lib; {
inherit version;
diff --git a/pkgs/desktops/gnome-2/desktop/vte/change-scroll-region.patch b/pkgs/desktops/gnome-2/desktop/vte/change-scroll-region.patch
new file mode 100644
index 000000000000..9e3e83b1262a
--- /dev/null
+++ b/pkgs/desktops/gnome-2/desktop/vte/change-scroll-region.patch
@@ -0,0 +1,67 @@
+Index: vte-0.26.0/src/vte.c
+===================================================================
+--- vte-0.26.0.orig/src/vte.c 2010-11-30 23:04:53.000000000 -0800
++++ vte-0.26.0/src/vte.c 2010-12-07 20:05:07.865548000 -0800
+@@ -3862,6 +3862,7 @@ vte_terminal_process_incoming(VteTermina
+ long wcount, start, delta;
+ gboolean leftovers, modified, bottom, again;
+ gboolean invalidated_text;
++ gboolean in_scroll_region;
+ GArray *unichars;
+ struct _vte_incoming_chunk *chunk, *next_chunk, *achunk = NULL;
+
+@@ -3881,6 +3882,10 @@ vte_terminal_process_incoming(VteTermina
+ cursor = screen->cursor_current;
+ cursor_visible = terminal->pvt->cursor_visible;
+
++ in_scroll_region = screen->scrolling_restricted
++ && (screen->cursor_current.row >= (screen->insert_delta + screen->scrolling_region.start))
++ && (screen->cursor_current.row <= (screen->insert_delta + screen->scrolling_region.end));
++
+ /* We should only be called when there's data to process. */
+ g_assert(terminal->pvt->incoming ||
+ (terminal->pvt->pending->len > 0));
+@@ -3979,6 +3984,8 @@ skip_chunk:
+ * points to the first character which isn't part of this
+ * sequence. */
+ if ((match != NULL) && (match[0] != '\0')) {
++ gboolean new_in_scroll_region;
++
+ /* Call the right sequence handler for the requested
+ * behavior. */
+ _vte_terminal_handle_sequence(terminal,
+@@ -3989,12 +3996,20 @@ skip_chunk:
+ start = (next - wbuf);
+ modified = TRUE;
+
+- /* if we have moved during the sequence handler, restart the bbox */
++ new_in_scroll_region = screen->scrolling_restricted
++ && (screen->cursor_current.row >= (screen->insert_delta + screen->scrolling_region.start))
++ && (screen->cursor_current.row <= (screen->insert_delta + screen->scrolling_region.end));
++
++ delta = screen->scroll_delta; /* delta may have changed from sequence. */
++
++ /* if we have moved greatly during the sequence handler, or moved into a scroll_region
++ * from outside it, restart the bbox */
+ if (invalidated_text &&
+- (screen->cursor_current.col > bbox_bottomright.x + VTE_CELL_BBOX_SLACK ||
+- screen->cursor_current.col < bbox_topleft.x - VTE_CELL_BBOX_SLACK ||
+- screen->cursor_current.row > bbox_bottomright.y + VTE_CELL_BBOX_SLACK ||
+- screen->cursor_current.row < bbox_topleft.y - VTE_CELL_BBOX_SLACK)) {
++ ((new_in_scroll_region && !in_scroll_region) ||
++ (screen->cursor_current.col > bbox_bottomright.x + VTE_CELL_BBOX_SLACK ||
++ screen->cursor_current.col < bbox_topleft.x - VTE_CELL_BBOX_SLACK ||
++ screen->cursor_current.row > bbox_bottomright.y + VTE_CELL_BBOX_SLACK ||
++ screen->cursor_current.row < bbox_topleft.y - VTE_CELL_BBOX_SLACK))) {
+ /* Clip off any part of the box which isn't already on-screen. */
+ bbox_topleft.x = MAX(bbox_topleft.x, 0);
+ bbox_topleft.y = MAX(bbox_topleft.y, delta);
+@@ -4014,6 +4029,8 @@ skip_chunk:
+ bbox_bottomright.x = bbox_bottomright.y = -G_MAXINT;
+ bbox_topleft.x = bbox_topleft.y = G_MAXINT;
+ }
++
++ in_scroll_region = new_in_scroll_region;
+ } else
+ /* Second, we have a NULL match, and next points to the very
+ * next character in the buffer. Insert the character which
diff --git a/pkgs/desktops/gnome-2/desktop/vte/default.nix b/pkgs/desktops/gnome-2/desktop/vte/default.nix
index 5932caf9e97d..b086c64abff8 100644
--- a/pkgs/desktops/gnome-2/desktop/vte/default.nix
+++ b/pkgs/desktops/gnome-2/desktop/vte/default.nix
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
patches = [
./alt.patch
+ ./change-scroll-region.patch
# CVE-2012-2738
./vte-0.28.2-limit-arguments.patch
];
diff --git a/pkgs/desktops/gnome-3/3.16/apps/accerciser/default.nix b/pkgs/desktops/gnome-3/3.16/apps/accerciser/default.nix
index c8d33c24156c..a2813e0581b3 100644
--- a/pkgs/desktops/gnome-3/3.16/apps/accerciser/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/apps/accerciser/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [
pkgconfig gtk3 wrapGAppsHook itstool libxml2 python3 pyatspi
- python3Packages.pygobject3 python3Packages.ipythonLight
+ python3Packages.pygobject3 python3Packages.ipython
at_spi2_core dbus intltool libwnck3 gnome3.defaultIconTheme
];
diff --git a/pkgs/desktops/gnome-3/3.16/core/evolution-data-server/default.nix b/pkgs/desktops/gnome-3/3.16/core/evolution-data-server/default.nix
index 2126aa9ee4db..81a64e9e1757 100644
--- a/pkgs/desktops/gnome-3/3.16/core/evolution-data-server/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/core/evolution-data-server/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = with gnome3;
[ pkgconfig glib python intltool libsoup libxml2 gtk gnome_online_accounts
- gcr p11_kit libgweather libgdata gperf makeWrapper icu sqlite ]
+ gcr p11_kit libgweather libgdata gperf makeWrapper icu sqlite gsettings_desktop_schemas ]
++ stdenv.lib.optional valaSupport vala;
propagatedBuildInputs = [ libsecret nss nspr libical db ];
diff --git a/pkgs/desktops/gnome-3/3.16/core/gcr/default.nix b/pkgs/desktops/gnome-3/3.16/core/gcr/default.nix
index abd5074685ac..c7b4cdd0ab2f 100644
--- a/pkgs/desktops/gnome-3/3.16/core/gcr/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/core/gcr/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
#doCheck = true;
- enableParallelBuilding = true;
+ #enableParallelBuilding = true; issues on hydra
preFixup = ''
wrapProgram "$out/bin/gcr-viewer" \
diff --git a/pkgs/desktops/gnome-3/3.16/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/3.16/core/gnome-shell/default.nix
index ca50cf8218d8..899efc5443bb 100644
--- a/pkgs/desktops/gnome-3/3.16/core/gnome-shell/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/core/gnome-shell/default.nix
@@ -8,12 +8,7 @@
# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.10.2.1.ebuild?revision=1.3&view=markup
stdenv.mkDerivation rec {
- name = "gnome-shell-${gnome3.version}.1";
-
- src = fetchurl {
- url = "mirror://gnome/sources/gnome-shell/${gnome3.version}/${name}.tar.xz";
- sha256 = "00gjdfaznpnspb4jmjc19axiz6snd9drvqmzpq4sw0xh1ysgpncv";
- };
+ inherit (import ./src.nix fetchurl) name src;
# Needed to find /etc/NetworkManager/VPN
configureFlags = [ "--sysconfdir=/etc" ];
diff --git a/pkgs/desktops/gnome-3/3.16/core/gnome-shell/src.nix b/pkgs/desktops/gnome-3/3.16/core/gnome-shell/src.nix
new file mode 100644
index 000000000000..782e18e4a9dd
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.16/core/gnome-shell/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+ name = "gnome-shell-3.16.1";
+
+ src = fetchurl {
+ url = mirror://gnome/sources/gnome-shell/3.16/gnome-shell-3.16.1.tar.xz;
+ sha256 = "9bd9fbb40fb003ae09bebfe29d5b6a569b1fbb4a81c92ac9bada5efb956bf201";
+ };
+}
diff --git a/pkgs/desktops/gnome-3/3.16/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.16/misc/gpaste/default.nix
index f3c751f458d9..dee9caf444c5 100644
--- a/pkgs/desktops/gnome-3/3.16/misc/gpaste/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/misc/gpaste/default.nix
@@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper }:
stdenv.mkDerivation rec {
- version = "${gnome3.version}";
+ version = "${gnome3.version}.3";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
- sha256 = "1dj5pv87j9s32f778i5bdlmrg60i9cyh4411a66kxbqyfdrq7ys0";
+ sha256 = "1czc707y2ksb8lgq1la0qkj3wpi202hjfiyshsndhw0pqn3qjj4a";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib
diff --git a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
index b0958d232fc7..7d5447ae52ab 100644
--- a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
+++ b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
majorVersion = "0.3";
- minorVersion = "0.1";
+ minorVersion = "1.3";
name = "pantheon-terminal-${majorVersion}.${minorVersion}";
src = fetchurl {
url = "https://launchpad.net/pantheon-terminal/${majorVersion}.x/${majorVersion}.${minorVersion}/+download/${name}.tgz";
- sha256 = "14wspqxp79myyyjngr1x7jg1kw15g3nm2pav2zffp8xs16s1i5za";
+ sha256 = "0bfrqxig26i9qhm15kk7h9lgmzgnqada5snbbwqkp0n0pnyyh4ss";
};
preConfigure = ''
diff --git a/pkgs/desktops/plasma-5.3/packages.sh b/pkgs/desktops/plasma-5.3/packages.sh
index c43c47296d6e..68b20c49df97 100755
--- a/pkgs/desktops/plasma-5.3/packages.sh
+++ b/pkgs/desktops/plasma-5.3/packages.sh
@@ -15,7 +15,7 @@ $(nix-build -A autonix.manifest) \
"${KDE_MIRROR}/stable/plasma/5.3.2/" \
"$@" -A '*.tar.xz'
-AUTONIX_DEPS_KF5=${AUTONIX_DEPS_KF5:-"$(nix-build -A haskellngPackages.autonix-deps-kf5)/bin/kf5-deps"}
+AUTONIX_DEPS_KF5=${AUTONIX_DEPS_KF5:-"$(nix-build -A haskellPackages.autonix-deps-kf5)/bin/kf5-deps"}
$AUTONIX_DEPS_KF5 manifest.json
diff --git a/pkgs/desktops/xfce/core/exo.nix b/pkgs/desktops/xfce/core/exo.nix
index f48a3e3808bd..83610a4e4a65 100644
--- a/pkgs/desktops/xfce/core/exo.nix
+++ b/pkgs/desktops/xfce/core/exo.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
p_name = "exo";
ver_maj = "0.10";
- ver_min = "6";
+ ver_min = "7";
src = fetchurl {
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
- sha256 = "1cc0e5a432e050a5e5aa64d126b988f4440da4f27474aaf42a4d8e13651d0752";
+ sha256 = "521581481128af93e815f9690020998181f947ac9e9c2b232b1f144d76b1b35c";
};
name = "${p_name}-${ver_maj}.${ver_min}";
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
- meta = {
+ meta = with stdenv.lib; {
homepage = "http://www.xfce.org/projects/${p_name}";
description = "Application library for the Xfce desktop environment";
- license = stdenv.lib.licenses.gpl2Plus;
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index 459158a136ac..f2a9f848342c 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -4,7 +4,7 @@ let
callPackage = newScope (deps // xfce_self);
-deps = rec { # xfce-global dependency overrides should be here
+deps = { # xfce-global dependency overrides should be here
inherit (pkgs.gnome) libglade libwnck vte gtksourceview;
inherit (pkgs.perlPackages) URI;
};
diff --git a/pkgs/development/compilers/ccl/default.nix b/pkgs/development/compilers/ccl/default.nix
index 378a8fc8cad2..3522e234fa2a 100644
--- a/pkgs/development/compilers/ccl/default.nix
+++ b/pkgs/development/compilers/ccl/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
src = fetchsvn {
url = http://svn.clozure.com/publicsvn/openmcl/release/1.10/linuxx86/ccl;
rev = revision;
- sha256 = "11lmdvzj1mbm7mbr22vjbcrsvinyz8n32a91ms324xqdqpr82ifb";
+ sha256 = "04p77n18cw0bc8i66mp2vfrhlliahrx66lm004a3nw3h0mdk0gd8";
};
buildInputs = [ gcc glibc m4 ];
diff --git a/pkgs/development/compilers/cudatoolkit/generic.nix b/pkgs/development/compilers/cudatoolkit/generic.nix
index d7bc718ea60f..d4970b278bbe 100644
--- a/pkgs/development/compilers/cudatoolkit/generic.nix
+++ b/pkgs/development/compilers/cudatoolkit/generic.nix
@@ -59,7 +59,6 @@ in stdenv.mkDerivation rec {
perl ./install-linux.pl --prefix="$out"
rm $out/tools/CUDA_Occupancy_Calculator.xls
perl ./install-sdk-linux.pl --prefix="$sdk" --cudaprefix="$out"
- mv $out/include $out/usr_include
# let's remove the 32-bit libraries, they confuse the lib64->lib mover
rm -rf $out/lib
@@ -70,8 +69,6 @@ in stdenv.mkDerivation rec {
fi
'';
- setupHook = ./setup-hook.sh;
-
meta = {
license = lib.licenses.unfree;
};
diff --git a/pkgs/development/compilers/cudatoolkit/setup-hook.sh b/pkgs/development/compilers/cudatoolkit/setup-hook.sh
deleted file mode 100644
index 1b75a2e91ba2..000000000000
--- a/pkgs/development/compilers/cudatoolkit/setup-hook.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-addIncludePath () {
- if test -d "$1/usr_include"
- then
- export NIX_CFLAGS_COMPILE="${NIX_CFLAGS_COMPILE} -I$1/usr_include"
- fi
-}
-
-envHooks=(${envHooks[@]} addIncludePath)
diff --git a/pkgs/development/compilers/dmd/default.nix b/pkgs/development/compilers/dmd/default.nix
index fb4666de4c21..8b0f2509a911 100644
--- a/pkgs/development/compilers/dmd/default.nix
+++ b/pkgs/development/compilers/dmd/default.nix
@@ -15,6 +15,7 @@ stdenv.mkDerivation {
substituteInPlace src/dmd/posix.mak --replace g++ clang++
'';
+ # Buid and install are based on http://wiki.dlang.org/Building_DMD
buildPhase = ''
cd src/dmd
make -f posix.mak INSTALL_DIR=$out
@@ -50,7 +51,7 @@ stdenv.mkDerivation {
cd $out/bin
tee dmd.conf << EOF
[Environment]
- DFLAGS=-I$out/include/d2 -L-L$out/lib -L--no-warn-search-mismatch -L--export-dynamic
+ DFLAGS=-I$out/include/d2 -L-L$out/lib ${stdenv.lib.optionalString (!stdenv.cc.isClang) "-L--no-warn-search-mismatch -L--export-dynamic"}
EOF
'';
diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix
index f1844a1a632b..1ea2894d88d7 100644
--- a/pkgs/development/compilers/gcl/default.nix
+++ b/pkgs/development/compilers/gcl/default.nix
@@ -1,11 +1,13 @@
-a :
-let
+a @ { mpfr, m4, binutils, fetchcvs, emacs, zlib, which
+, texinfo, libX11, xproto, inputproto, libXi
+, libXext, xextproto, libXt, libXaw, libXmu, stdenv, ... } :
+let
buildInputs = with a; [
mpfr m4 binutils emacs gmp
- libX11 xproto inputproto libXi
+ libX11 xproto inputproto libXi
libXext xextproto libXt libXaw libXmu
- zlib which texinfo texLive
- ];
+ zlib which texinfo
+ ];
in
(
@@ -40,7 +42,7 @@ rec {
'') ["minInit" "doUnpack" "addInputs"];
/* doConfigure should be removed if not needed */
- phaseNames = ["setVars" "doUnpack" "preBuild"
+ phaseNames = ["setVars" "doUnpack" "preBuild"
"doConfigure" "doMakeInstall"];
}) // {
meta = {
@@ -48,7 +50,7 @@ rec {
maintainers = [
a.lib.maintainers.raskin
];
- platforms = with a.lib.platforms;
+ platforms = with a.lib.platforms;
linux;
};
}
diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix
index 4e660853f200..96ec4e6c114a 100644
--- a/pkgs/development/compilers/ghc/6.10.2-binary.nix
+++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
# On Linux, use patchelf to modify the executables so that they can
# find editline/gmp.
(if stdenv.isLinux then ''
- find . -type f -perm +100 \
+ find . -type f -perm -0100 \
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${libedit}/lib:${ncurses}/lib:${gmp}/lib" {} \;
for prog in ld ar gcc strip ranlib; do
diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix
index 7a6f1b78fa49..31df7f1fa355 100644
--- a/pkgs/development/compilers/ghc/7.0.4-binary.nix
+++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
# On Linux, use patchelf to modify the executables so that they can
# find editline/gmp.
stdenv.lib.optionalString stdenv.isLinux ''
- find . -type f -perm +100 \
+ find . -type f -perm -0100 \
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${ncurses}/lib:${gmp}/lib" {} \;
sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix
index 3d781e9d558f..03dd4dcd35bb 100644
--- a/pkgs/development/compilers/ghc/7.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix
@@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
stdenv.lib.optionalString stdenv.isLinux ''
mkdir -p "$out/lib"
ln -sv "${ncurses}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5"
- find . -type f -perm +100 \
+ find . -type f -perm -0100 \
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "$out/lib:${gmp}/lib" {} \;
sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
diff --git a/pkgs/development/compilers/ghc/7.8.3.nix b/pkgs/development/compilers/ghc/7.8.3.nix
new file mode 100644
index 000000000000..2e0f5ba07e4d
--- /dev/null
+++ b/pkgs/development/compilers/ghc/7.8.3.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchurl, ghc, perl, gmp, ncurses, libiconv }:
+
+stdenv.mkDerivation rec {
+ version = "7.8.3";
+ name = "ghc-${version}";
+
+ src = fetchurl {
+ url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.xz";
+ sha256 = "0n5rhwl83yv8qm0zrbaxnyrf8x1i3b6si927518mwfxs96jrdkdh";
+ };
+
+ buildInputs = [ ghc perl gmp ncurses ];
+
+ enableParallelBuilding = true;
+
+ buildMK = ''
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
+ DYNAMIC_BY_DEFAULT = NO
+ ${stdenv.lib.optionalString stdenv.isDarwin ''
+ libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
+ libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
+ ''}
+ '';
+
+ preConfigure = ''
+ echo "${buildMK}" > mk/build.mk
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ '';
+
+ # required, because otherwise all symbols from HSffi.o are stripped, and
+ # that in turn causes GHCi to abort
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+
+ meta = {
+ homepage = "http://haskell.org/ghc";
+ description = "The Glasgow Haskell Compiler";
+ maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
+ inherit (ghc.meta) license platforms;
+ };
+
+}
diff --git a/pkgs/development/compilers/go/1.5.nix b/pkgs/development/compilers/go/1.5.nix
index 4f9e8b25b755..3858d2566f44 100644
--- a/pkgs/development/compilers/go/1.5.nix
+++ b/pkgs/development/compilers/go/1.5.nix
@@ -15,11 +15,11 @@ in
stdenv.mkDerivation rec {
name = "go-${version}";
- version = "1.5";
+ version = "1.5.1";
src = fetchurl {
url = "https://github.com/golang/go/archive/go${version}.tar.gz";
- sha256 = "03g3w6af74xggqlgwf5xriqzl9a0q17sp0qbyq8qs55qls07r81p";
+ sha256 = "1xd1nd1li7pdl72vq8zkh6m7ms3ajgyqz9a5d61gagm0cgj8zilz";
};
# perl is used for testing go vet
diff --git a/pkgs/development/compilers/icedtea-web/default.nix b/pkgs/development/compilers/icedtea-web/default.nix
index f1a7b9078156..863c74bc4c1b 100644
--- a/pkgs/development/compilers/icedtea-web/default.nix
+++ b/pkgs/development/compilers/icedtea-web/default.nix
@@ -1,26 +1,26 @@
-{ stdenv, fetchurl, jdk, gtk2, xulrunner, zip, pkgconfig, perl, npapi_sdk, bash }:
+{ stdenv, fetchurl, jdk, gtk2, xulrunner, zip, pkgconfig, perl, npapi_sdk, bash, bc }:
stdenv.mkDerivation rec {
name = "icedtea-web-${version}";
- version = "1.6";
+ version = "1.6.1";
src = fetchurl {
url = "http://icedtea.wildebeest.org/download/source/${name}.tar.gz";
-
- sha256 = "0z8iirvpciai55s4vhpfkhyx4h4hm6dqy4pg4c61pia3innqd4qn";
+ sha256 = "0869j9jn0z5b5pfspp4v5cj2ksmbqmmmjhqicn4kqc6wr6v6md59";
};
- buildInputs = [ gtk2 xulrunner zip pkgconfig npapi_sdk ];
+ nativeBuildInputs = [ pkgconfig bc perl ];
+ buildInputs = [ gtk2 xulrunner zip npapi_sdk ];
preConfigure = ''
- substituteInPlace javac.in --replace '#!/usr/bin/perl' '#!${perl}/bin/perl'
-
- configureFlags="BIN_BASH=${bash}/bin/bash $configureFlags"
+ #patchShebangs javac.in
+ configureFlagsArray+=("BIN_BASH=${bash}/bin/bash")
'';
configureFlags = [
"--with-jdk-home=${jdk.home}"
+ "--disable-docs"
];
mozillaPlugin = "/lib";
diff --git a/pkgs/development/compilers/intercal/default.nix b/pkgs/development/compilers/intercal/default.nix
new file mode 100644
index 000000000000..f601dc254a43
--- /dev/null
+++ b/pkgs/development/compilers/intercal/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl
+, pkgconfig
+, bison, flex
+, makeWrapper }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+
+ name = "intercal-${version}";
+ version = "0.30";
+
+ src = fetchurl {
+ url = "http://catb.org/esr/intercal/${name}.tar.gz";
+ sha256 = "058ppvvgz9r5603ia9jkknbrciypgg4hjbczrv9v1d9w3ak652xk";
+ };
+
+ buildInputs =
+ [ pkgconfig bison flex makeWrapper ];
+
+ # Intercal invokes gcc, so we need an explicit PATH
+ postInstall = ''
+ wrapProgram $out/bin/ick --suffix PATH ':' ${stdenv.cc}/bin
+ '';
+
+ meta = {
+ description = "The original esoteric programming language";
+ longDescription = ''
+ INTERCAL, an abbreviation for "Compiler Language With No
+ Pronounceable Acronym", is a famously esoterical programming
+ language. It was created in 1972, by Donald R. Woods and James
+ M. Lyon, with the unusual goal of creating a language with no
+ similarities whatsoever to any existing programming
+ languages. The language largely succeeds in this goal, apart
+ from its use of an assignment statement.
+ '';
+ homepage = http://www.catb.org/~esr/intercal/;
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.AndersonTorres ];
+ platforms = platforms.linux;
+ };
+}
+# TODO: investigate if LD_LIBRARY_PATH needs to be set
diff --git a/pkgs/development/compilers/julia/0.3.nix b/pkgs/development/compilers/julia/0.3.nix
index 76dc6aa1d30f..710ddec9c105 100644
--- a/pkgs/development/compilers/julia/0.3.nix
+++ b/pkgs/development/compilers/julia/0.3.nix
@@ -5,11 +5,22 @@
, libunwind, llvm, readline, utf8proc, zlib
# standard library dependencies
, double_conversion, fftwSinglePrec, fftw, glpk, gmp, mpfr, pcre
+# linear algebra
, openblas, arpack, suitesparse
}:
with stdenv.lib;
+# All dependencies should use the same OpenBLAS.
+let
+ arpack_ = arpack;
+ suitesparse_ = suitesparse;
+in
+let
+ arpack = arpack_.override { inherit openblas; };
+ suitesparse = suitesparse_.override { inherit openblas; };
+in
+
stdenv.mkDerivation rec {
pname = "julia";
version = "0.3.11";
@@ -34,7 +45,7 @@ stdenv.mkDerivation rec {
md5 = "cb61be3be7254eae39684612c524740d";
};
- in [ dsfmt_src llvm.src ];
+ in [ dsfmt_src ];
prePatch = ''
copy_kill_hash(){
@@ -59,22 +70,18 @@ stdenv.mkDerivation rec {
sed -e "s@/sbin/ldconfig@true@" -i src/ccall.*
'';
- buildInputs =
- [ libunwind readline utf8proc zlib
- double_conversion fftw fftwSinglePrec glpk gmp mpfr pcre
- openblas arpack suitesparse
- ];
+ buildInputs = [
+ arpack double_conversion fftw fftwSinglePrec glpk gmp libunwind
+ llvm mpfr pcre openblas readline suitesparse utf8proc zlib
+ ];
- nativeBuildInputs = [ gfortran git m4 patchelf perl which python2 ];
+ nativeBuildInputs = [ gfortran git m4 patchelf perl python2 which ];
makeFlags =
let
arch = head (splitString "-" stdenv.system);
- march =
- { "x86_64-linux" = "x86-64";
- "x86_64-darwin" = "x86-64";
- "i686-linux" = "i686";
- }."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
+ march = { "x86_64" = "x86-64"; "i686" = "i686"; }."${arch}"
+ or (throw "unsupported architecture: ${arch}");
in [
"ARCH=${arch}"
"MARCH=${march}"
@@ -97,6 +104,7 @@ stdenv.mkDerivation rec {
"USE_SYSTEM_GMP=1"
"USE_SYSTEM_GRISU=1"
"USE_SYSTEM_LIBUNWIND=1"
+ "USE_SYSTEM_LLVM=1"
"USE_SYSTEM_MPFR=1"
"USE_SYSTEM_PATCHELF=1"
"USE_SYSTEM_PCRE=1"
diff --git a/pkgs/development/compilers/llvm/3.3/llvm.nix b/pkgs/development/compilers/llvm/3.3/llvm.nix
index d0f8fcb3bf8f..8dca8b43bc2c 100644
--- a/pkgs/development/compilers/llvm/3.3/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.3/llvm.nix
@@ -12,6 +12,11 @@ in stdenv.mkDerivation rec {
patches = [
./more-memory-for-bugpoint.patch # The default rlimits in 3.3 are too low for shared libraries.
./no-rule-aarch64.patch # http://llvm.org/bugs/show_bug.cgi?id=16625
+ # Patch needed for Julia, backports fixes from LLVM 3.5
+ (fetchurl {
+ url = "https://raw.githubusercontent.com/JuliaLang/julia/3bdda3750efc4ebf8ce7eda8a0888ffef3851605/deps/llvm-3.3.patch";
+ sha256 = "0j6chyx4k8zr1qha5dks8lqlcraqrj4q1hwnk2kj3qi6cajsd8k3";
+ })
];
buildInputs = [ perl groff cmake python libffi ];
diff --git a/pkgs/development/compilers/llvm/3.7/clang/default.nix b/pkgs/development/compilers/llvm/3.7/clang/default.nix
new file mode 100644
index 000000000000..9fb212b9c054
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/clang/default.nix
@@ -0,0 +1,55 @@
+{ stdenv, fetch, cmake, libxml2, libedit, llvm, version, clang-tools-extra_src }:
+
+let
+ gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
+in stdenv.mkDerivation {
+ name = "clang-${version}";
+
+ unpackPhase = ''
+ unpackFile ${fetch "cfe" "1k517b0jj74c4vgnnd4ikbrpb96na541bi8q845ckw8xm72l1msf"}
+ mv cfe-${version}.src clang
+ sourceRoot=$PWD/clang
+ unpackFile ${clang-tools-extra_src}
+ mv clang-tools-extra-* $sourceRoot/tools/extra
+ '';
+
+ buildInputs = [ cmake libedit libxml2 llvm ];
+
+ cmakeFlags = [
+ "-DCMAKE_BUILD_TYPE=Release"
+ "-DCMAKE_CXX_FLAGS=-std=c++11"
+ ] ++
+ # Maybe with compiler-rt this won't be needed?
+ (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++
+ (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include");
+
+ patches = [ ./purity.patch ];
+
+ postPatch = ''
+ sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp
+ sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp
+ '';
+
+ # Clang expects to find LLVMgold in its own prefix
+ # Clang expects to find sanitizer libraries in its own prefix
+ postInstall = ''
+ ln -sv ${llvm}/lib/LLVMgold.so $out/lib
+ ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/
+ ln -sv $out/bin/clang $out/bin/cpp
+ '';
+
+ enableParallelBuilding = true;
+
+ passthru = {
+ isClang = true;
+ } // stdenv.lib.optionalAttrs stdenv.isLinux {
+ inherit gcc;
+ };
+
+ meta = {
+ description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler";
+ homepage = http://llvm.org/;
+ license = stdenv.lib.licenses.bsd3;
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/3.7/clang/purity.patch b/pkgs/development/compilers/llvm/3.7/clang/purity.patch
new file mode 100644
index 000000000000..ee73b26eb5ce
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/clang/purity.patch
@@ -0,0 +1,17 @@
+--- a/lib/Driver/Tools.cpp 2015-07-31 00:47:41.000000000 +0200
++++ b/lib/Driver/Tools.cpp 2015-09-11 21:30:50.057895565 +0200
+@@ -8150,15 +8150,6 @@
+ CmdArgs.push_back("-shared");
+ }
+
+- if (Arch == llvm::Triple::arm || Arch == llvm::Triple::armeb ||
+- Arch == llvm::Triple::thumb || Arch == llvm::Triple::thumbeb ||
+- (!Args.hasArg(options::OPT_static) &&
+- !Args.hasArg(options::OPT_shared))) {
+- CmdArgs.push_back("-dynamic-linker");
+- CmdArgs.push_back(Args.MakeArgString(
+- D.DyldPrefix + getLinuxDynamicLinker(Args, ToolChain)));
+- }
+-
+ CmdArgs.push_back("-o");
+ CmdArgs.push_back(Output.getFilename());
diff --git a/pkgs/development/compilers/llvm/3.7/default.nix b/pkgs/development/compilers/llvm/3.7/default.nix
new file mode 100644
index 000000000000..cbd0f89ae086
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/default.nix
@@ -0,0 +1,35 @@
+{ newScope, stdenv, isl, fetchurl, overrideCC, wrapCC }:
+let
+ callPackage = newScope (self // { inherit stdenv isl version fetch; });
+
+ version = "3.7.0";
+
+ fetch = fetch_v version;
+ fetch_v = ver: name: sha256: fetchurl {
+ url = "http://llvm.org/releases/${ver}/${name}-${ver}.src.tar.xz";
+ inherit sha256;
+ };
+
+ compiler-rt_src = fetch "compiler-rt" "02rbsqdnj1dw9q3d8w5wwmvz5gfraiv8xp18lis4kj8baacajzr2";
+ clang-tools-extra_src = fetch "clang-tools-extra" "1k894zkx4w8grigmgv5y4q9zrcic2ypz0zfn28270ykbm6is1s4a";
+
+ self = {
+ llvm = callPackage ./llvm.nix {
+ inherit compiler-rt_src stdenv;
+ };
+
+ clang-unwrapped = callPackage ./clang {
+ inherit clang-tools-extra_src stdenv;
+ };
+
+ clang = wrapCC self.clang-unwrapped;
+
+ stdenv = overrideCC stdenv self.clang;
+
+ lldb = callPackage ./lldb.nix {};
+
+ libcxx = callPackage ./libc++ {};
+
+ libcxxabi = callPackage ./libc++abi.nix {};
+ };
+in self
diff --git a/pkgs/development/compilers/llvm/3.7/libc++/darwin.patch b/pkgs/development/compilers/llvm/3.7/libc++/darwin.patch
new file mode 100644
index 000000000000..bf83f169cfc3
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/libc++/darwin.patch
@@ -0,0 +1,30 @@
+diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/CMakeLists.txt
+--- libcxx-3.4.2.src-orig/lib/CMakeLists.txt 2013-11-15 18:18:57.000000000 +0100
++++ libcxx-3.4.2.src/lib/CMakeLists.txt 2014-09-24 14:04:01.000000000 +0200
+@@ -56,7 +56,7 @@
+ "-compatibility_version 1"
+ "-current_version ${LIBCXX_VERSION}"
+ "-install_name /usr/lib/libc++.1.dylib"
+- "-Wl,-reexport_library,/usr/lib/libc++abi.dylib"
++ "-Wl,-reexport_library,${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib"
+ "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp"
+ "/usr/lib/libSystem.B.dylib")
+ else()
+@@ -64,14 +64,14 @@
+ list(FIND ${CMAKE_OSX_ARCHITECTURES} "armv7" OSX_HAS_ARMV7)
+ if (OSX_HAS_ARMV7)
+ set(OSX_RE_EXPORT_LINE
+- "${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib"
++ "${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib"
+ "-Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++sjlj-abi.exp")
+ else()
+ set(OSX_RE_EXPORT_LINE
+- "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib")
++ "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib")
+ endif()
+ else()
+- set (OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
++ set (OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
+ endif()
+
+ list(APPEND link_flags
diff --git a/pkgs/development/compilers/llvm/3.7/libc++/default.nix b/pkgs/development/compilers/llvm/3.7/libc++/default.nix
new file mode 100644
index 000000000000..cd985d89098d
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/libc++/default.nix
@@ -0,0 +1,49 @@
+{ lib, stdenv, fetch, cmake, libcxxabi, fixDarwinDylibNames, version }:
+
+stdenv.mkDerivation rec {
+ name = "libc++-${version}";
+
+ src = fetch "libcxx" "13nh78zp5d2jf732mxnalw679zjywbjpz9942j66fznd6f1kr3y1";
+
+ postUnpack = ''
+ unpackFile ${libcxxabi.src}
+ '';
+
+ preConfigure = ''
+ # Get headers from the cxxabi source so we can see private headers not installed by the cxxabi package
+ cmakeFlagsArray=($cmakeFlagsArray -DLIBCXX_CXX_ABI_INCLUDE_PATHS="$NIX_BUILD_TOP/libcxxabi-${version}.src/include")
+ '' +
+ stdenv.lib.optionalString stdenv.isDarwin ''
+ # instead of allowing libc++ to link with /usr/lib/libc++abi.dylib,
+ # force it to link with our copy
+ substituteInPlace lib/CMakeLists.txt \
+ --replace 'OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib' \
+ 'OSX_RE_EXPORT_LINE "${libcxxabi}/lib/libc++abi.dylib' \
+ --replace '"''${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib"' \
+ '"${libcxxabi}/lib/libc++abi.dylib"'
+ '';
+
+ patches = [ ./darwin.patch ];
+
+ buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
+
+ cmakeFlags =
+ [ "-DCMAKE_BUILD_TYPE=Release"
+ "-DLIBCXX_LIBCXXABI_LIB_PATH=${libcxxabi}/lib"
+ "-DLIBCXX_LIBCPPABI_VERSION=2"
+ "-DLIBCXX_CXX_ABI=libcxxabi"
+ ];
+
+ enableParallelBuilding = true;
+
+ linkCxxAbi = stdenv.isLinux;
+
+ setupHook = ./setup-hook.sh;
+
+ meta = {
+ homepage = http://libcxx.llvm.org/;
+ description = "A new implementation of the C++ standard library, targeting C++11";
+ license = "BSD";
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/3.7/libc++/setup-hook.sh b/pkgs/development/compilers/llvm/3.7/libc++/setup-hook.sh
new file mode 100644
index 000000000000..9022fced6ecf
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/libc++/setup-hook.sh
@@ -0,0 +1,3 @@
+linkCxxAbi="@linkCxxAbi@"
+export NIX_CXXSTDLIB_COMPILE+=" -isystem @out@/include/c++/v1"
+export NIX_CXXSTDLIB_LINK=" -stdlib=libc++${linkCxxAbi:+" -lc++abi"}"
diff --git a/pkgs/development/compilers/llvm/3.7/libc++abi.nix b/pkgs/development/compilers/llvm/3.7/libc++abi.nix
new file mode 100644
index 000000000000..a1b300ffa04f
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/libc++abi.nix
@@ -0,0 +1,47 @@
+{ stdenv, cmake, fetch, libcxx, libunwind, llvm, version }:
+
+stdenv.mkDerivation {
+ name = "libc++abi-${version}";
+
+ src = fetch "libcxxabi" "1swvnhrf9g67579c5picg0l869f8l2bwi4xqpbcb4n296gyp9c28";
+
+ buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) libunwind;
+
+ postUnpack = ''
+ unpackFile ${libcxx.src}
+ unpackFile ${llvm.src}
+ export NIX_CFLAGS_COMPILE+=" -I$PWD/include"
+ export cmakeFlags="-DLLVM_PATH=$PWD/$(ls -d llvm-*) -DLIBCXXABI_LIBCXX_INCLUDES=$PWD/$(ls -d libcxx-*)/include"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export TRIPLE=x86_64-apple-darwin
+ '';
+
+ installPhase = if stdenv.isDarwin
+ then ''
+ for file in lib/*.dylib; do
+ # this should be done in CMake, but having trouble figuring out
+ # the magic combination of necessary CMake variables
+ # if you fancy a try, take a look at
+ # http://www.cmake.org/Wiki/CMake_RPATH_handling
+ install_name_tool -id $out/$file $file
+ done
+ make install
+ install -d 755 $out/include
+ install -m 644 ../include/cxxabi.h $out/include
+ ''
+ else ''
+ install -d -m 755 $out/include $out/lib
+ install -m 644 lib/libc++abi.so.1.0 $out/lib
+ install -m 644 ../include/cxxabi.h $out/include
+ ln -s libc++abi.so.1.0 $out/lib/libc++abi.so
+ ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1
+ '';
+
+ meta = {
+ homepage = http://libcxxabi.llvm.org/;
+ description = "A new implementation of low level support for a standard C++ library";
+ license = "BSD";
+ maintainers = with stdenv.lib.maintainers; [ vlstill ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/3.7/lldb.nix b/pkgs/development/compilers/llvm/3.7/lldb.nix
new file mode 100644
index 000000000000..60f1550dd447
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/lldb.nix
@@ -0,0 +1,49 @@
+{ stdenv
+, fetch
+, cmake
+, zlib
+, ncurses
+, swig
+, which
+, libedit
+, llvm
+, clang-unwrapped
+, python
+, version
+}:
+
+stdenv.mkDerivation {
+ name = "lldb-${version}";
+
+ src = fetch "lldb" "1sbi9c6c4m73wfw249dn0n2974p444i03brk82m4w10iq5dm1mzl";
+
+ patchPhase = ''
+ sed -i 's|/usr/bin/env||' \
+ scripts/Python/finish-swig-Python-LLDB.sh \
+ scripts/Python/build-swig-Python.sh
+ '';
+
+ buildInputs = [ cmake python which swig ncurses zlib libedit ];
+
+ preConfigure = ''
+ export CXXFLAGS="-pthread"
+ export LDFLAGS="-ldl"
+ '';
+
+ cmakeFlags = [
+ "-DCMAKE_BUILD_TYPE=Release"
+ "-DLLDB_PATH_TO_LLVM_BUILD=${llvm}"
+ "-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}"
+ "-DPYTHON_VERSION_MAJOR=2"
+ "-DPYTHON_VERSION_MINOR=7"
+ ];
+
+ enableParallelBuilding = true;
+
+ meta = {
+ description = "A next-generation high-performance debugger";
+ homepage = http://llvm.org/;
+ license = stdenv.lib.licenses.bsd3;
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix
new file mode 100644
index 000000000000..eb1f6f668b15
--- /dev/null
+++ b/pkgs/development/compilers/llvm/3.7/llvm.nix
@@ -0,0 +1,74 @@
+{ stdenv
+, fetch
+, perl
+, groff
+, cmake
+, python
+, libffi
+, binutils
+, libxml2
+, valgrind
+, ncurses
+, version
+, zlib
+, compiler-rt_src
+}:
+
+let
+ src = fetch "llvm" "0lrirklh4nrcb078qc2f6vbmmc34kxqgsy9s18a1xbfdkmgqjidb";
+in stdenv.mkDerivation rec {
+ name = "llvm-${version}";
+
+ unpackPhase = ''
+ unpackFile ${src}
+ mv llvm-${version}.src llvm
+ sourceRoot=$PWD/llvm
+ unpackFile ${compiler-rt_src}
+ mv compiler-rt-* $sourceRoot/projects/compiler-rt
+ '';
+
+ buildInputs = [ perl groff cmake libxml2 python libffi ] /* ++ stdenv.lib.optional stdenv.isLinux valgrind */;
+
+ propagatedBuildInputs = [ ncurses zlib ];
+
+ # hacky fix: created binaries need to be run before installation
+ preBuild = ''
+ mkdir -p $out/
+ ln -sv $PWD/lib $out
+ '';
+
+ cmakeFlags = with stdenv; [
+ "-DCMAKE_BUILD_TYPE=Release"
+ "-DLLVM_BUILD_TESTS=ON"
+ "-DLLVM_ENABLE_FFI=ON"
+ "-DLLVM_ENABLE_RTTI=ON"
+ ] ++ stdenv.lib.optionals (!isDarwin) [
+ "-DBUILD_SHARED_LIBS=ON"
+ "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ ] ++ stdenv.lib.optionals ( isDarwin) [
+ "-DCMAKE_CXX_FLAGS=-stdlib=libc++"
+ "-DCAN_TARGET_i386=false"
+ ];
+
+ postBuild = ''
+ rm -fR $out
+
+ paxmark m bin/{lli,llvm-rtdyld}
+
+ paxmark m unittests/ExecutionEngine/JIT/JITTests
+ paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests
+ paxmark m unittests/Support/SupportTests
+ '';
+
+ enableParallelBuilding = true;
+
+ passthru.src = src;
+
+ meta = {
+ description = "Collection of modular and reusable compiler and toolchain technologies";
+ homepage = http://llvm.org/;
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ];
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/compilers/neko/default.nix b/pkgs/development/compilers/neko/default.nix
index 0321ae1f60ab..32c1bbbe9414 100644
--- a/pkgs/development/compilers/neko/default.nix
+++ b/pkgs/development/compilers/neko/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, boehmgc, zlib, sqlite, pcre }:
+{ stdenv, fetchurl, fetchpatch, boehmgc, zlib, sqlite, pcre }:
stdenv.mkDerivation rec {
name = "neko-${version}";
@@ -9,6 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "1lcm1ahbklfpd5lnqjwmvyj2vr85jbq57hszk5jgq0x6yx6p3927";
};
+ patches = stdenv.lib.singleton (fetchpatch {
+ url = "https://github.com/HaxeFoundation/neko/commit/"
+ + "ccc78c29deab7971e1369f4fe3dedd14cf9f3128.patch";
+ sha256 = "1nya50rzai15hmpq2azganjxzgrfydf30glfwirgw6q8z7z3wpkq";
+ });
+
prePatch = with stdenv.lib; let
libs = concatStringsSep "," (map (lib: "\"${lib}/include\"") buildInputs);
in ''
diff --git a/pkgs/development/compilers/openjdk/default.nix b/pkgs/development/compilers/openjdk/7.nix
similarity index 100%
rename from pkgs/development/compilers/openjdk/default.nix
rename to pkgs/development/compilers/openjdk/7.nix
diff --git a/pkgs/development/compilers/openjdk/openjdk8.nix b/pkgs/development/compilers/openjdk/8.nix
similarity index 81%
rename from pkgs/development/compilers/openjdk/openjdk8.nix
rename to pkgs/development/compilers/openjdk/8.nix
index 8afa770cdb27..0e9184e1c628 100644
--- a/pkgs/development/compilers/openjdk/openjdk8.nix
+++ b/pkgs/development/compilers/openjdk/8.nix
@@ -1,8 +1,22 @@
{ stdenv, fetchurl, cpio, file, which, unzip, zip, xorg, cups, freetype
, alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib
+, setJavaClassPath
+, minimal ? false
+}:
-, minimal ? false } :
let
+
+ /**
+ * The JRE libraries are in directories that depend on the CPU.
+ */
+ architecture =
+ if stdenv.system == "i686-linux" then
+ "i386"
+ else if stdenv.system == "x86_64-linux" then
+ "amd64"
+ else
+ throw "openjdk requires i686-linux or x86_64 linux";
+
update = "60";
build = "24";
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u";
@@ -98,14 +112,14 @@ let
installPhase = ''
mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk
- cp -av build"/"*/images/j2sdk-image"/"* $out/lib/openjdk
+ cp -av build/*/images/j2sdk-image/* $out/lib/openjdk
# Move some stuff to top-level.
mv $out/lib/openjdk/include $out/include
mv $out/lib/openjdk/man $out/share/man
# jni.h expects jni_md.h to be in the header search path.
- ln -s $out/include/linux"/"*_md.h $out/include/
+ ln -s $out/include/linux/*_md.h $out/include/
# Remove some broken manpages.
rm -rf $out/share/man/ja*
@@ -124,7 +138,7 @@ let
ln -s $out/lib/openjdk/bin $out/lib/openjdk/jre/bin
# Set PaX markings
- exes=$(file $out/lib/openjdk/bin"/"* $jre/lib/openjdk/jre/bin"/"* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
+ exes=$(file $out/lib/openjdk/bin/* $jre/lib/openjdk/jre/bin/* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
echo "to mark: *$exes*"
for file in $exes; do
echo "marking *$file*"
@@ -149,6 +163,25 @@ let
ln -s $jre/lib/openjdk/jre/bin $jre/bin
'';
+ # FIXME: this is unnecessary once the multiple-outputs branch is merged.
+ preFixup = ''
+ prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}"
+ patchELF $jre
+ propagatedNativeBuildInputs+=" $jre"
+
+ # Propagate the setJavaClassPath setup hook from the JRE so that
+ # any package that depends on the JRE has $CLASSPATH set up
+ # properly.
+ mkdir -p $jre/nix-support
+ echo -n "${setJavaClassPath}" > $jre/nix-support/propagated-native-build-inputs
+
+ # Set JAVA_HOME automatically.
+ mkdir -p $out/nix-support
+ cat < $out/nix-support/setup-hook
+ if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out/lib/openjdk; fi
+ EOF
+ '';
+
postFixup = ''
# Build the set of output library directories to rpath against
LIBDIRS=""
@@ -183,6 +216,9 @@ let
platforms = platforms.linux;
};
- passthru.home = "${openjdk8}/lib/openjdk";
+ passthru = {
+ inherit architecture;
+ home = "${openjdk8}/lib/openjdk";
+ };
};
in openjdk8
diff --git a/pkgs/development/compilers/oraclejdk/dlj-bundle-builder.sh b/pkgs/development/compilers/oraclejdk/dlj-bundle-builder.sh
index 56669ae0f2f6..459bfce50988 100644
--- a/pkgs/development/compilers/oraclejdk/dlj-bundle-builder.sh
+++ b/pkgs/development/compilers/oraclejdk/dlj-bundle-builder.sh
@@ -45,7 +45,7 @@ fi
rpath=$rpath${rpath:+:}$jrePath/lib/$architecture/jli
# set all the dynamic linkers
-find $out -type f -perm +100 \
+find $out -type f -perm -0100 \
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "$rpath" {} \;
diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
index 35ee1a04a268..f4944e45c0e8 100644
--- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix
@@ -142,7 +142,7 @@ let result = stdenv.mkDerivation rec {
rpath=$rpath''${rpath:+:}$jrePath/lib/${architecture}
# set all the dynamic linkers
- find $out -type f -perm +100 \
+ find $out -type f -perm -0100 \
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "$rpath" {} \;
@@ -182,6 +182,9 @@ let result = stdenv.mkDerivation rec {
passthru.home = result;
- meta.license = stdenv.lib.licenses.unfree;
+ meta = with stdenv.lib; {
+ license = licenses.unfree;
+ platforms = [ "i686-linux" "x86_64-linux" ]; # some inherit jre.meta.platforms
+ };
}; in result
diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix
index 6bb60c6dc69e..ee7d0c7749d9 100644
--- a/pkgs/development/compilers/rustc/generic.nix
+++ b/pkgs/development/compilers/rustc/generic.nix
@@ -118,15 +118,13 @@ stdenv.mkDerivation {
configureFlags = configureFlags
++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ]
+ # TODO always include starting from 1.3.0, superseeding patch and substituteInPlace below
+ ++ stdenv.lib.optional (!isRelease) [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${stdenv.cc.binutils}/bin/ar" ]
++ stdenv.lib.optional (stdenv.cc.cc ? isClang) "--enable-clang";
inherit patches;
postPatch = ''
- substituteInPlace src/librustc_back/target/mod.rs \
- --subst-var-by "ccPath" "${stdenv.cc}/bin/cc" \
- --subst-var-by "arPath" "${stdenv.cc.binutils}/bin/ar"
-
substituteInPlace src/rust-installer/gen-install-script.sh \
--replace /bin/echo "${coreutils}/bin/echo"
substituteInPlace src/rust-installer/gen-installer.sh \
@@ -135,7 +133,11 @@ stdenv.mkDerivation {
# Workaround for NixOS/nixpkgs#8676
substituteInPlace mk/rustllvm.mk \
--replace "\$\$(subst /,//," "\$\$(subst /,/,"
- '';
+ '' + stdenv.lib.optionalString (isRelease) ''
+ substituteInPlace src/librustc_back/target/mod.rs \
+ --subst-var-by "ccPath" "${stdenv.cc}/bin/cc" \
+ --subst-var-by "arPath" "${stdenv.cc.binutils}/bin/ar"
+ ''; # TODO remove in 1.3.0, superseeded by configure flags
buildInputs = [ which file perl curl python27 makeWrapper git ]
++ stdenv.lib.optionals (!stdenv.isDarwin) [ procps valgrind ];
diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix
index d65258a3a08d..3b1cccee9413 100644
--- a/pkgs/development/compilers/rustc/head.nix
+++ b/pkgs/development/compilers/rustc/head.nix
@@ -1,18 +1,18 @@
+# Please make sure to check if rustfmt still builds when updating nightly
+
{ stdenv, callPackage }:
callPackage ./generic.nix {
- shortVersion = "2015-08-09";
+ shortVersion = "2015-09-05";
isRelease = false;
- # src rev for 2015-08-09's nightly channel
- srcRev = "a5d33d891";
- srcSha = "1iivzk9ggjh7y89rbw275apw4rfmzh4jk50kf0milljhvf72660n";
- snapshotHashLinux686 = "3459275cdf3896f678e225843fa56f0d9fdbabe8";
- snapshotHashLinux64 = "e451e3bd6e5fcef71e41ae6f3da9fb1cf0e13a0c";
- snapshotHashDarwin686 = "428944a7984c0988e77909d82ca2ef77d96a1fbd";
- snapshotHashDarwin64 = "b0515bb7d2892b9a58282fc865fee11a885406d6";
- snapshotDate = "2015-07-26";
- snapshotRev = "a5c12f4";
- patches = [
- ./patches/head.patch
- ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
+ # src rev for 2015-09-05's nightly channel
+ srcRev = "779b2a9847319106647dcad12fc6dc472bc0cf4d";
+ srcSha = "0m22lxpcjnwa68bpxhfvp07k52gyds8ykif2pf5r2x22lw28vbg3";
+ snapshotHashLinux686 = "e2553bf399cd134a08ef3511a0a6ab0d7a667216";
+ snapshotHashLinux64 = "7df8ba9dec63ec77b857066109d4b6250f3d222f";
+ snapshotHashDarwin686 = "29750870c82a0347f8b8b735a4e2e0da26f5098d";
+ snapshotHashDarwin64 = "c9f2c588238b4c6998190c3abeb33fd6164099a2";
+ snapshotDate = "2015-08-11";
+ snapshotRev = "1af31d4";
+ patches = stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
}
diff --git a/pkgs/development/compilers/rustc/patches/head.patch b/pkgs/development/compilers/rustc/patches/head.patch
index ace22c825f9e..2425fff04a15 100644
--- a/pkgs/development/compilers/rustc/patches/head.patch
+++ b/pkgs/development/compilers/rustc/patches/head.patch
@@ -1,18 +1,3 @@
-diff --git a/src/librustc_back/target/mod.rs b/src/librustc_back/target/mod.rs
-index 39e4291..b352bd1 100644
---- a/src/librustc_back/target/mod.rs
-+++ b/src/librustc_back/target/mod.rs
-@@ -179,8 +179,8 @@ impl Default for TargetOptions {
- fn default() -> TargetOptions {
- TargetOptions {
- data_layout: String::new(),
-- linker: "cc".to_string(),
-- ar: "ar".to_string(),
-+ linker: "@ccPath@".to_string(), // ignore-tidy-linelength
-+ ar: "@arPath@".to_string(), // ignore-tidy-linelength
- pre_link_args: Vec::new(),
- post_link_args: Vec::new(),
- cpu: "generic".to_string(),
diff --git a/src/test/run-pass/issue-20797.rs b/src/test/run-pass/issue-20797.rs
index 2772fc8..3d37b08 100644
--- a/src/test/run-pass/issue-20797.rs
diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix
index 861a12f1f09f..dc862940edf2 100644
--- a/pkgs/development/compilers/urweb/default.nix
+++ b/pkgs/development/compilers/urweb/default.nix
@@ -1,77 +1,43 @@
-{ stdenv, fetchurl, file, openssl, mlton, mysql, postgresql, sqlite }:
+{ stdenv, fetchurl, file, openssl, mlton
+, mysql, postgresql, sqlite
+}:
stdenv.mkDerivation rec {
- pname = "urweb";
+ name = "urweb-${version}";
version = "20150819";
- name = "${pname}-${version}";
src = fetchurl {
url = "http://www.impredicative.com/ur/${name}.tgz";
sha256 = "0gpdlq3aazx121k3ia94qfa4dyv04q7478x2p6hvcjamn18vk56n";
};
- buildInputs = [ stdenv.cc file openssl mlton mysql postgresql sqlite ];
+ buildInputs = [ openssl mlton mysql postgresql sqlite ];
prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
- '';
+ '';
- preConfigure =
- ''
- export CC="${stdenv.cc}/bin/gcc";
- export CCARGS="-I$out/include \
- -L${mysql.lib}/lib/mysql -L${postgresql}/lib -L${sqlite}/lib";
+ configureFlags = "--with-openssl=${openssl}";
- export PGHEADER="${postgresql}/include/libpq-fe.h";
- export MSHEADER="${mysql.lib}/include/mysql/mysql.h";
- export SQHEADER="${sqlite}/include/sqlite3.h";
- '';
+ preConfigure = ''
+ export PGHEADER="${postgresql}/include/libpq-fe.h";
+ export MSHEADER="${mysql.lib}/include/mysql/mysql.h";
+ export SQHEADER="${sqlite}/include/sqlite3.h";
- configureFlags = "--with-openssl=${openssl}";
+ export CCARGS="-I$out/include \
+ -L${mysql.lib}/lib/mysql \
+ -L${postgresql}/lib \
+ -L${sqlite}/lib";
+ '';
+ # Be sure to keep the statically linked libraries
dontDisableStatic = true;
meta = {
- description = "Construct dynamic web applications backed by SQL databases";
- longDescription = ''
- Ur is a programming language in the tradition of ML and Haskell, but
- featuring a significantly richer type system. Ur is functional, pure,
- statically-typed, and strict. Ur supports a powerful kind of
- metaprogramming based on row types.
-
- Ur/Web is Ur plus a special standard library and associated rules for
- parsing and optimization. Ur/Web supports construction of dynamic web
- applications backed by SQL databases. The signature of the standard
- library is such that well-typed Ur/Web programs "don't go wrong" in a
- very broad sense. Not only do they not crash during particular page
- generations, but they also may not:
-
- * Suffer from any kinds of code-injection attacks
- * Return invalid HTML
- * Contain dead intra-application links
- * Have mismatches between HTML forms and the fields expected by their handlers
- * Include client-side code that makes incorrect assumptions about the "AJAX"-style services that the remote web server provides
- * Attempt invalid SQL queries
- * Use improper marshaling or unmarshaling in communication with SQL databases or between browsers and web servers
-
- This type safety is just the foundation of the Ur/Web methodology. It is
- also possible to use metaprogramming to build significant application pieces
- by analysis of type structure. For instance, the demo includes an ML-style
- functor for building an admin interface for an arbitrary SQL table. The
- type system guarantees that the admin interface sub-application that comes
- out will always be free of the above-listed bugs, no matter which well-typed
- table description is given as input.
-
- The Ur/Web compiler also produces very efficient object code that does not use
- garbage collection. These compiled programs will often be even more efficient
- than what most programmers would bother to write in C. For example, the
- standalone web server generated for the demo uses less RAM than the bash shell.
- The compiler also generates JavaScript versions of client-side code, with no need
- to write those parts of applications in a different language.
- '';
-
- homepage = http://www.impredicative.com/ur/;
- license = stdenv.lib.licenses.bsd3;
- platforms = [ "i686-linux" "x86_64-linux" ];
+ description = "Advanced purely-functional web programming language";
+ homepage = "http://www.impredicative.com/ur/";
+ license = stdenv.lib.licenses.bsd3;
+ platforms = stdenv.lib.platforms.linux;
+ maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 1545e49130a1..9f7a18fa2dac 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -8,11 +8,11 @@ self: super: {
Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6;
Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3;
Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0;
- cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; zlib = self.zlib_0_5_4_2; });
- cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_6; zlib = self.zlib_0_5_4_2; });
+ cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; });
+ cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_6; });
# Link statically to avoid runtime dependency on GHC.
- jailbreak-cabal = disableSharedExecutables super.jailbreak-cabal;
+ jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = dontJailbreak self.Cabal_1_20_0_3; };
# Apply NixOS-specific patches.
ghc-paths = appendPatch super.ghc-paths ./patches/ghc-paths-nix.patch;
@@ -20,28 +20,59 @@ self: super: {
# Break infinite recursions.
Dust-crypto = dontCheck super.Dust-crypto;
hasql-postgres = dontCheck super.hasql-postgres;
+ hspec_2_1_10 = super.hspec_2_1_10.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_2 = super.hspec_2_1_2.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_3 = super.hspec_2_1_3.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_4 = super.hspec_2_1_4.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_5 = super.hspec_2_1_5.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_6 = super.hspec_2_1_6.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec_2_1_7 = super.hspec_2_1_7.override { stringbuilder = dontCheck super.stringbuilder; };
+ hspec-expectations_0_6_1_1 = dontCheck super.hspec-expectations_0_6_1_1;
+ hspec-expectations_0_6_1 = dontCheck super.hspec-expectations_0_6_1;
+ hspec-expectations_0_7_1 = dontCheck super.hspec-expectations_0_7_1;
+ hspec-expectations = dontCheck super.hspec-expectations;
hspec = super.hspec.override { stringbuilder = dontCheck super.stringbuilder; };
HTTP = dontCheck super.HTTP;
+ mwc-random_0_13_2_2 = dontCheck super.mwc-random_0_13_2_2;
+ mwc-random_0_13_3_0 = dontCheck super.mwc-random_0_13_3_0;
mwc-random = dontCheck super.mwc-random;
+ nanospec_0_2_0 = dontCheck super.nanospec_0_2_0;
nanospec = dontCheck super.nanospec;
+ options_1_2_1 = dontCheck super.options_1_2_1;
+ options_1_2 = dontCheck super.options_1_2;
options = dontCheck super.options;
statistics = dontCheck super.statistics;
+ text_1_1_1_3 = dontCheck super.text_1_1_1_3;
+ text_1_2_0_3 = dontCheck super.text_1_2_0_3;
+ text_1_2_0_4 = dontCheck super.text_1_2_0_4;
+ text_1_2_0_6 = dontCheck super.text_1_2_0_6;
text = dontCheck super.text;
# The package doesn't compile with ruby 1.9, which is our default at the moment.
hruby = super.hruby.override { ruby = pkgs.ruby_2_1; };
- # Doesn't compile with lua 5.2.
- hslua = super.hslua.override { lua = pkgs.lua5_1; };
-
# Use the default version of mysql to build this package (which is actually mariadb).
mysql = super.mysql.override { mysql = pkgs.mysql.lib; };
# Link the proper version.
zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };
- # These changes are required to support Darwin.
- git-annex = (disableSharedExecutables super.git-annex).override {
+ # This package needs a little help compiling properly on Darwin. Furthermore,
+ # Stackage compiles git-annex without the Assistant, supposedly because not
+ # all required dependencies are part of Stackage. To comply with Stackage, we
+ # make 'git-annex-without-assistant' our default version, but offer another
+ # build which has the assistant to be used in the top-level.
+ git-annex_5_20150916 = (disableCabalFlag super.git-annex_5_20150916 "assistant").override {
+ dbus = if pkgs.stdenv.isLinux then self.dbus else null;
+ fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
+ hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
+ };
+ git-annex = (disableCabalFlag super.git-annex "assistant").override {
+ dbus = if pkgs.stdenv.isLinux then self.dbus else null;
+ fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
+ hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
+ };
+ git-annex-with-assistant = super.git-annex.override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
@@ -53,7 +84,7 @@ self: super: {
configureFlags = (drv.configureFlags or []) ++
pkgs.lib.optional pkgs.stdenv.is64bit "--extra-lib-dirs=${pkgs.cudatoolkit}/lib64" ++ [
"--extra-lib-dirs=${pkgs.cudatoolkit}/lib"
- "--extra-include-dirs=${pkgs.cudatoolkit}/usr_include"
+ "--extra-include-dirs=${pkgs.cudatoolkit}/include"
];
preConfigure = ''
unset CC # unconfuse the haskell-cuda configure script
@@ -65,33 +96,6 @@ self: super: {
# https://github.com/phaazon/al/issues/1
al = appendConfigureFlag super.al "--extra-include-dirs=${pkgs.openal}/include/AL";
- # Depends on code distributed under a non-free license.
- accelerate-cublas = dontDistribute super.accelerate-cublas;
- accelerate-cuda = dontDistribute super.accelerate-cuda;
- accelerate-cufft = dontDistribute super.accelerate-cufft;
- accelerate-examples = dontDistribute super.accelerate-examples;
- accelerate-fft = dontDistribute super.accelerate-fft;
- accelerate-fourier-benchmark = dontDistribute super.accelerate-fourier-benchmark;
- AttoJson = markBroken super.AttoJson;
- bindings-yices = dontDistribute super.bindings-yices;
- cublas = dontDistribute super.cublas;
- cufft = dontDistribute super.cufft;
- gloss-accelerate = dontDistribute super.gloss-accelerate;
- gloss-raster-accelerate = dontDistribute super.gloss-raster-accelerate;
- GoogleTranslate = dontDistribute super.GoogleTranslate;
- GoogleDirections = dontDistribute super.GoogleDirections;
- libnvvm = dontDistribute super.libnvvm;
- manatee-all = dontDistribute super.manatee-all;
- manatee-ircclient = dontDistribute super.manatee-ircclient;
- Obsidian = dontDistribute super.Obsidian;
- patch-image = dontDistribute super.patch-image;
- yices = dontDistribute super.yices;
- yices-easy = dontDistribute super.yices-easy;
- yices-painless = dontDistribute super.yices-painless;
-
- # https://github.com/GaloisInc/RSA/issues/9
- RSA = dontCheck super.RSA;
-
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super.kademlia;
@@ -116,17 +120,7 @@ self: super: {
# https://github.com/haskell/time/issues/23
time_1_5_0_1 = dontCheck super.time_1_5_0_1;
- # Help libconfig find it's C language counterpart.
- libconfig = (dontCheck super.libconfig).override { config = pkgs.libconfig; };
-
- hmatrix = overrideCabal super.hmatrix (drv: {
- configureFlags = (drv.configureFlags or []) ++ [ "-fopenblas" ];
- extraLibraries = [ pkgs.openblasCompat ];
- preConfigure = ''
- sed -i hmatrix.cabal -e 's@/usr/lib/openblas/lib@${pkgs.openblasCompat}/lib@'
- '';
- });
-
+ # Switch levmar build to openblas.
bindings-levmar = overrideCabal super.bindings-levmar (drv: {
preConfigure = ''
sed -i bindings-levmar.cabal \
@@ -156,6 +150,13 @@ self: super: {
HDBC-odbc = dontHaddock super.HDBC-odbc;
hoodle-core = dontHaddock super.hoodle-core;
hsc3-db = dontHaddock super.hsc3-db;
+ hspec-discover_2_1_10 = dontHaddock super.hspec-discover_2_1_10;
+ hspec-discover_2_1_2 = dontHaddock super.hspec-discover_2_1_2;
+ hspec-discover_2_1_3 = dontHaddock super.hspec-discover_2_1_3;
+ hspec-discover_2_1_4 = dontHaddock super.hspec-discover_2_1_4;
+ hspec-discover_2_1_5 = dontHaddock super.hspec-discover_2_1_5;
+ hspec-discover_2_1_6 = dontHaddock super.hspec-discover_2_1_6;
+ hspec-discover_2_1_7 = dontHaddock super.hspec-discover_2_1_7;
hspec-discover = dontHaddock super.hspec-discover;
http-client-conduit = dontHaddock super.http-client-conduit;
http-client-multipart = dontHaddock super.http-client-multipart;
@@ -170,7 +171,7 @@ self: super: {
darcs = (overrideCabal super.darcs (drv: {
doCheck = false; # The test suite won't even start.
postPatch = "sed -i -e 's|attoparsec .*,|attoparsec,|' -e 's|vector .*,|vector,|' darcs.cabal";
- })).overrideScope (self: super: { zlib = self.zlib_0_5_4_2; });
+ }));
# https://github.com/massysett/rainbox/issues/1
rainbox = dontCheck super.rainbox;
@@ -178,13 +179,6 @@ self: super: {
# https://github.com/techtangents/ablist/issues/1
ABList = dontCheck super.ABList;
- # These packages have broken dependencies.
- ASN1 = dontDistribute super.ASN1; # NewBinary
- frame-markdown = dontDistribute super.frame-markdown; # frame
- hails-bin = dontDistribute super.hails-bin; # Hails
- lss = markBrokenVersion "0.1.0.0" super.lss; # https://github.com/dbp/lss/issues/2
- snaplet-lss = markBrokenVersion "0.1.0.0" super.snaplet-lss; # https://github.com/dbp/lss/issues/2
-
# https://github.com/haskell/vector/issues/47
vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector;
@@ -225,21 +219,6 @@ self: super: {
'';
});
- # Does not compile: "fatal error: ieee-flpt.h: No such file or directory"
- base_4_8_1_0 = markBroken super.base_4_8_1_0;
-
- # Obsolete: https://github.com/massysett/prednote/issues/1.
- prednote-test = markBrokenVersion "0.26.0.4" super.prednote-test;
-
- # Doesn't compile: "Setup: can't find include file ghc-gmp.h"
- integer-gmp_1_0_0_0 = markBroken super.integer-gmp_1_0_0_0;
-
- # Obsolete.
- lushtags = markBrokenVersion "0.0.1" super.lushtags;
-
- # https://github.com/haskell/bytestring/issues/41
- bytestring_0_10_6_0 = dontCheck super.bytestring_0_10_6_0;
-
# tests don't compile for some odd reason
jwt = dontCheck super.jwt;
@@ -303,6 +282,7 @@ self: super: {
pocket-dns = dontCheck super.pocket-dns;
postgresql-simple = dontCheck super.postgresql-simple;
postgrest = dontCheck super.postgrest;
+ setenv_0_1_1_1 = dontCheck super.setenv_0_1_1_1;
snowball = dontCheck super.snowball;
sophia = dontCheck super.sophia;
test-sandbox = dontCheck super.test-sandbox;
@@ -313,8 +293,8 @@ self: super: {
xmlgen = dontCheck super.xmlgen;
# These packages try to access the network.
- amqp = dontCheck super.amqp;
amqp-conduit = dontCheck super.amqp-conduit;
+ amqp = dontCheck super.amqp;
bitcoin-api = dontCheck super.bitcoin-api;
bitcoin-api-extra = dontCheck super.bitcoin-api-extra;
bitx-bitcoin = dontCheck super.bitx-bitcoin; # http://hydra.cryp.to/build/926187/log/raw
@@ -326,9 +306,38 @@ self: super: {
hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw
hjsonschema = overrideCabal super.hjsonschema (drv: { testTarget = "local"; });
holy-project = dontCheck super.holy-project; # http://hydra.cryp.to/build/502002/nixlog/1/raw
+ holy-project_0_1_1_1 = dontCheck super.holy-project_0_1_1_1;
+ holy-project_0_2_0_0 = dontCheck super.holy-project_0_2_0_0 ;
hoogle = overrideCabal super.hoogle (drv: { testTarget = "--test-option=--no-net"; });
+ http-client_0_4_11_1 = dontCheck super.http-client_0_4_11_1;
+ http-client_0_4_11_2 = dontCheck super.http-client_0_4_11_2;
+ http-client_0_4_11_3 = dontCheck super.http-client_0_4_11_3;
+ http-client_0_4_11 = dontCheck super.http-client_0_4_11;
+ http-client_0_4_12 = dontCheck super.http-client_0_4_12;
+ http-client_0_4_13 = dontCheck super.http-client_0_4_13;
+ http-client_0_4_15 = dontCheck super.http-client_0_4_15;
+ http-client_0_4_16 = dontCheck super.http-client_0_4_16;
+ http-client_0_4_18_1 = dontCheck super.http-client_0_4_18_1;
+ http-client_0_4_19 = dontCheck super.http-client_0_4_19;
+ http-client_0_4_20 = dontCheck super.http-client_0_4_20;
+ http-client_0_4_21 = dontCheck super.http-client_0_4_21;
+ http-client_0_4_22 = dontCheck super.http-client_0_4_22;
+ http-client_0_4_6_1 = dontCheck super.http-client_0_4_6_1;
+ http-client_0_4_6_2 = dontCheck super.http-client_0_4_6_2;
+ http-client_0_4_6 = dontCheck super.http-client_0_4_6;
+ http-client_0_4_7_1 = dontCheck super.http-client_0_4_7_1;
+ http-client_0_4_7 = dontCheck super.http-client_0_4_7;
+ http-client_0_4_8_1 = dontCheck super.http-client_0_4_8_1;
+ http-client_0_4_8 = dontCheck super.http-client_0_4_8;
+ http-client_0_4_9 = dontCheck super.http-client_0_4_9;
http-client = dontCheck super.http-client; # http://hydra.cryp.to/build/501430/nixlog/1/raw
+ http-conduit_2_1_5_1 = dontCheck super.http-conduit_2_1_5_1;
+ http-conduit_2_1_5 = dontCheck super.http-conduit_2_1_5;
+ http-conduit_2_1_7_1 = dontCheck super.http-conduit_2_1_7_1;
+ http-conduit_2_1_7_2 = dontCheck super.http-conduit_2_1_7_2;
http-conduit = dontCheck super.http-conduit; # http://hydra.cryp.to/build/501966/nixlog/1/raw
+ js-jquery_1_11_1 = dontCheck super.js-jquery_1_11_1;
+ js-jquery_1_11_2 = dontCheck super.js-jquery_1_11_2;
js-jquery = dontCheck super.js-jquery;
marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw
network-transport-tcp = dontCheck super.network-transport-tcp;
@@ -425,6 +434,9 @@ self: super: {
hsexif = dontCheck super.hsexif;
hspec-server = dontCheck super.hspec-server;
HTF = dontCheck super.HTF;
+ HTF_0_12_2_3 = dontCheck super.HTF_0_12_2_3;
+ HTF_0_12_2_4 = dontCheck super.HTF_0_12_2_4;
+ HTF_0_13_0_0 = dontCheck super.HTF_0_13_0_0;
htsn = dontCheck super.htsn;
htsn-import = dontCheck super.htsn-import;
http2 = dontCheck super.http2;
@@ -452,6 +464,9 @@ self: super: {
optional = dontCheck super.optional;
os-release = dontCheck super.os-release;
pandoc-citeproc = dontCheck super.pandoc-citeproc;
+ pandoc-citeproc_0_6 = dontCheck super.pandoc-citeproc_0_6;
+ pandoc-citeproc_0_6_0_1 = dontCheck super.pandoc-citeproc_0_6_0_1;
+ pandoc-citeproc_0_7_3 = dontCheck super.pandoc-citeproc_0_7_3;
persistent-redis = dontCheck super.persistent-redis;
pipes-extra = dontCheck super.pipes-extra;
pipes-websockets = dontCheck super.pipes-websockets;
@@ -470,6 +485,9 @@ self: super: {
separated = dontCheck super.separated;
shadowsocks = dontCheck super.shadowsocks;
shake-language-c = dontCheck super.shake-language-c;
+ shake-language-c_0_6_3 = dontCheck super.shake-language-c_0_6_3;
+ shake-language-c_0_6_4 = dontCheck super.shake-language-c_0_6_4;
+ shake-language-c_0_8_0 = dontCheck super.shake-language-c_0_8_0;
static-resources = dontCheck super.static-resources;
strive = dontCheck super.strive; # fails its own hlint test with tons of warnings
svndump = dontCheck super.svndump;
@@ -487,9 +505,6 @@ self: super: {
webdriver = dontCheck super.webdriver;
xsd = dontCheck super.xsd;
- # https://bitbucket.org/wuzzeb/webdriver-utils/issue/1/hspec-webdriver-101-cant-compile-its-test
- hspec-webdriver = markBroken super.hspec-webdriver;
-
# Needs access to locale data, but looks for it in the wrong place.
scholdoc-citeproc = dontCheck super.scholdoc-citeproc;
@@ -509,30 +524,12 @@ self: super: {
# Help the test suite find system timezone data.
tz = overrideCabal super.tz (drv: { preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; });
- # Deprecated upstream and doesn't compile.
- BASIC = dontDistribute super.BASIC;
- bytestring-arbitrary = dontDistribute (addBuildTool super.bytestring-arbitrary self.llvm);
- llvm = dontDistribute super.llvm;
- llvm-base = markBroken super.llvm-base;
- llvm-base-util = dontDistribute super.llvm-base-util;
- llvm-extra = dontDistribute super.llvm-extra;
- llvm-tf = dontDistribute super.llvm-tf;
- objectid = dontDistribute super.objectid;
- saltine-quickcheck = dontDistribute super.saltine-quickcheck;
- stable-tree = dontDistribute super.stable-tree;
- synthesizer-llvm = dontDistribute super.synthesizer-llvm;
- optimal-blocks = dontDistribute super.optimal-blocks;
- hs-blake2 = dontDistribute super.hs-blake2;
-
# https://ghc.haskell.org/trac/ghc/ticket/9625
vty = dontCheck super.vty;
# https://github.com/vincenthz/hs-crypto-pubkey/issues/20
crypto-pubkey = dontCheck super.crypto-pubkey;
- # https://github.com/zouppen/stratum-tool/issues/14
- stratum-tool = markBrokenVersion "0.0.4" super.stratum-tool;
-
# https://github.com/Gabriel439/Haskell-Turtle-Library/issues/1
turtle = dontCheck super.turtle;
@@ -545,15 +542,6 @@ self: super: {
# https://github.com/cgaebel/stm-conduit/issues/33
stm-conduit = dontCheck super.stm-conduit;
- # The install target tries to run lots of commands as "root". WTF???
- hannahci = markBroken super.hannahci;
-
- # https://github.com/jkarni/th-alpha/issues/1
- th-alpha = markBrokenVersion "0.2.0.0" super.th-alpha;
-
- # https://github.com/haskell-hub/hub-src/issues/24
- hub = markBrokenVersion "1.4.0" super.hub;
-
# https://github.com/pixbi/duplo/issues/25
duplo = dontCheck super.duplo;
@@ -573,9 +561,6 @@ self: super: {
rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5
rematch-text = dontCheck super.rematch-text; # https://github.com/tcrayford/rematch/issues/6
- # Upstream notified by e-mail.
- MonadCompose = markBrokenVersion "0.2.0.0" super.MonadCompose;
-
# no haddock since this is an umbrella package.
cloud-haskell = dontHaddock super.cloud-haskell;
@@ -585,12 +570,6 @@ self: super: {
# https://github.com/NixOS/nixpkgs/issues/6350
paypal-adaptive-hoops = overrideCabal super.paypal-adaptive-hoops (drv: { testTarget = "local"; });
- # https://github.com/jwiegley/simple-conduit/issues/2
- simple-conduit = markBroken super.simple-conduit;
-
- # https://code.google.com/p/linux-music-player/issues/detail?id=1
- mp = markBroken super.mp;
-
# https://github.com/afcowie/http-streams/issues/80
http-streams = dontCheck super.http-streams;
@@ -622,42 +601,15 @@ self: super: {
apiary-session = dontCheck super.apiary-session;
apiary-websockets = dontCheck super.apiary-websockets;
- # https://github.com/mikeizbicki/hmm/issues/12
- hmm = markBroken super.hmm;
-
# https://github.com/alephcloud/hs-configuration-tools/issues/40
configuration-tools = dontCheck super.configuration-tools;
- # https://github.com/fumieval/karakuri/issues/1
- karakuri = markBroken super.karakuri;
-
- # Upstream notified by e-mail.
- gearbox = markBroken super.gearbox;
-
- # https://github.com/deech/fltkhs/issues/7
- fltkhs = markBroken super.fltkhs;
-
- # Build fails, but there seems to be no issue tracker available. :-(
- hmidi = markBrokenVersion "0.2.1.0" super.hmidi;
- padKONTROL = markBroken super.padKONTROL;
- Bang = dontDistribute super.Bang;
- launchpad-control = dontDistribute super.launchpad-control;
-
- # Upstream provides no issue tracker and no contact details.
- vivid = markBroken super.vivid;
-
# Test suite wants to connect to $DISPLAY.
- hsqml = dontCheck (super.hsqml.override { qt5 = pkgs.qt53; });
-
- # https://github.com/lookunder/RedmineHs/issues/4
- Redmine = markBroken super.Redmine;
+ hsqml = dontCheck (addExtraLibrary (super.hsqml.override { qt5 = pkgs.qt5Full; }) pkgs.mesa);
# HsColour: Language/Unlambda.hs: hGetContents: invalid argument (invalid byte sequence)
unlambda = dontHyperlinkSource super.unlambda;
- # https://github.com/megantti/rtorrent-rpc/issues/2
- rtorrent-rpc = markBroken super.rtorrent-rpc;
-
# https://github.com/PaulJohnson/geodetics/issues/1
geodetics = dontCheck super.geodetics;
@@ -680,42 +632,12 @@ self: super: {
# /homeless-shelter. Disabled.
purescript = dontCheck super.purescript;
- # Broken by GLUT update.
- Monadius = markBroken super.Monadius;
-
- # We don't have the groonga package these libraries bind to.
- haroonga = markBroken super.haroonga;
- haroonga-httpd = markBroken super.haroonga-httpd;
-
- # Build is broken and no contact info available.
- hopenpgp-tools = markBroken super.hopenpgp-tools;
-
- # https://github.com/hunt-framework/hunt/issues/99
- hunt-server = markBrokenVersion "0.3.0.2" super.hunt-server;
-
- # https://github.com/bjpop/blip/issues/16
- blip = markBroken super.blip;
-
# https://github.com/tych0/xcffib/issues/37
xcffib = dontCheck super.xcffib;
# https://github.com/afcowie/locators/issues/1
locators = dontCheck super.locators;
- # https://github.com/scravy/hydrogen-syntax/issues/1
- hydrogen-syntax = markBroken super.hydrogen-syntax;
- hydrogen-cli = dontDistribute super.hydrogen-cli;
-
- # https://github.com/meteficha/Hipmunk/issues/8
- Hipmunk = markBroken super.Hipmunk;
- HipmunkPlayground = dontDistribute super.HipmunkPlayground;
- click-clack = dontDistribute super.click-clack;
-
- # https://github.com/fumieval/audiovisual/issues/1
- audiovisual = markBroken super.audiovisual;
- call = dontDistribute super.call;
- rhythm-game-tutorial = dontDistribute super.rhythm-game-tutorial;
-
# https://github.com/haskell/haddock/issues/378
haddock-library = dontCheck super.haddock-library;
@@ -757,14 +679,8 @@ self: super: {
# Override the obsolete version from Hackage with our more up-to-date copy.
cabal2nix = self.callPackage ../tools/haskell/cabal2nix/cabal2nix.nix {};
hackage2nix = self.callPackage ../tools/haskell/cabal2nix/hackage2nix.nix {};
- language-nix = self.callPackage ../tools/haskell/cabal2nix/language-nix.nix {};
distribution-nixpkgs = self.callPackage ../tools/haskell/cabal2nix/distribution-nixpkgs.nix {};
- # https://github.com/urs-of-the-backwoods/HGamer3D/issues/7
- HGamer3D-Bullet-Binding = dontDistribute super.HGamer3D-Bullet-Binding;
- HGamer3D-Common = dontDistribute super.HGamer3D-Common;
- HGamer3D-Data = markBroken super.HGamer3D-Data;
-
# https://github.com/ndmitchell/shake/issues/206
# https://github.com/ndmitchell/shake/issues/267
shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin && false; });
@@ -772,28 +688,6 @@ self: super: {
# https://github.com/nushio3/doctest-prop/issues/1
doctest-prop = dontCheck super.doctest-prop;
- # https://github.com/goldfirere/singletons/issues/117
- clash-lib = dontDistribute super.clash-lib;
- clash-verilog = dontDistribute super.clash-verilog;
- Frames = dontDistribute super.Frames;
- hgeometry = dontDistribute super.hgeometry;
- hipe = dontDistribute super.hipe;
- hsqml-datamodel-vinyl = dontDistribute super.hsqml-datamodel-vinyl;
- singleton-nats = dontDistribute super.singleton-nats;
- singletons = markBroken super.singletons;
- units-attoparsec = dontDistribute super.units-attoparsec;
- ihaskell-widgets = dontDistribute super.ihaskell-widgets;
- exinst-bytes = dontDistribute super.exinst-bytes;
- exinst-deepseq = dontDistribute super.exinst-deepseq;
- exinst-aeson = dontDistribute super.exinst-aeson;
- exinst = dontDistribute super.exinst;
- exinst-hashable = dontDistribute super.exinst-hashable;
-
- # https://github.com/anton-k/temporal-music-notation/issues/1
- temporal-music-notation = markBroken super.temporal-music-notation;
- temporal-music-notation-demo = dontDistribute super.temporal-music-notation-demo;
- temporal-music-notation-western = dontDistribute super.temporal-music-notation-western;
-
# https://github.com/adamwalker/sdr/issues/1
sdr = dontCheck super.sdr;
@@ -801,13 +695,9 @@ self: super: {
aeson = dontCheck super.aeson;
# Won't compile with recent versions of QuickCheck.
- testpack = markBroken super.testpack;
inilist = dontCheck super.inilist;
MissingH = dontCheck super.MissingH;
- # Obsolete for GHC versions after GHC 6.10.x.
- utf8-prelude = markBroken super.utf8-prelude;
-
# https://github.com/yaccz/saturnin/issues/3
Saturnin = dontCheck super.Saturnin;
@@ -837,9 +727,6 @@ self: super: {
inline-c-win32 = dontDistribute super.inline-c-win32;
Southpaw = dontDistribute super.Southpaw;
- # Doesn't work with recent versions of mtl.
- cron-compat = markBroken super.cron-compat;
-
# https://github.com/yesodweb/serversession/issues/1
serversession = dontCheck super.serversession;
@@ -851,10 +738,6 @@ self: super: {
# https://github.com/commercialhaskell/stack/issues/409
stack = overrideCabal super.stack (drv: { preCheck = "export HOME=$TMPDIR"; doCheck = false; });
- # Missing dependency on some hid-usb library.
- hid = markBroken super.hid;
- msi-kb-backlit = dontDistribute super.msi-kb-backlit;
-
# Hydra no longer allows building texlive packages.
lhs2tex = dontDistribute super.lhs2tex;
@@ -874,18 +757,12 @@ self: super: {
# https://github.com/edwinb/EpiVM/issues/14
epic = addExtraLibraries (addBuildTool super.epic self.happy) [pkgs.boehmgc pkgs.gmp];
- # Upstream has no issue tracker.
- dpkg = markBroken super.dpkg;
-
# https://github.com/ekmett/wl-pprint-terminfo/issues/7
wl-pprint-terminfo = addExtraLibrary super.wl-pprint-terminfo pkgs.ncurses;
# https://github.com/bos/pcap/issues/5
pcap = addExtraLibrary super.pcap pkgs.libpcap;
- # https://github.com/skogsbaer/hscurses/issues/24
- hscurses = markBroken super.hscurses;
-
# https://github.com/qnikst/imagemagick/issues/34
imagemagick = dontCheck super.imagemagick;
@@ -895,9 +772,6 @@ self: super: {
# https://github.com/k0ral/hbro-contrib/issues/1
hbro-contrib = dontDistribute super.hbro-contrib;
- # https://github.com/aka-bash0r/multi-cabal/issues/4
- multi-cabal = markBroken super.multi-cabal;
-
# Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233.
Elm = markBroken super.Elm;
elm-build-lib = markBroken super.elm-build-lib;
@@ -974,12 +848,6 @@ self: super: {
# https://github.com/bos/configurator/issues/22
configurator = dontCheck super.configurator;
- # https://github.com/thoughtpolice/hs-ed25519/issues/9
- ed25519 = markBroken super.ed25519;
- hackage-repo-tool = dontDistribute super.hackage-repo-tool;
- hackage-security = dontDistribute super.hackage-security;
- hackage-security-HTTP = dontDistribute super.hackage-security-HTTP;
-
# The cabal files for these libraries do not list the required system dependencies.
SDL-image = overrideCabal super.SDL-image (drv: {
librarySystemDepends = [ pkgs.SDL pkgs.SDL_image ] ++ drv.librarySystemDepends or [];
@@ -1000,11 +868,8 @@ self: super: {
];
});
- # https://github.com/chrisdone/freenect/pull/11
- freenect = overrideCabal super.freenect (drv: {
- libraryPkgconfigDepends = [ pkgs.freenect ];
- prePatch = '' echo " Pkgconfig-Depends: libfreenect" >> freenect.cabal '';
- });
+ # Old versions don't detect this library reliably.
+ freenect = appendConfigureFlag super.freenect "--extra-include-dirs=${pkgs.freenect}/include/libfreenect --extra-lib-dirs=${pkgs.freenect}/lib";
# https://github.com/ivanperez-keera/hcwiid/pull/4
hcwiid = overrideCabal super.hcwiid (drv: {
@@ -1020,13 +885,52 @@ self: super: {
# https://github.com/basvandijk/concurrent-extra/issues/12
concurrent-extra = dontCheck super.concurrent-extra;
- # https://github.com/GaloisInc/DSA/issues/1
- DSA = dontCheck super.DSA;
-
# https://github.com/bos/bloomfilter/issues/7
bloomfilter = appendPatch super.bloomfilter ./patches/bloomfilter-fix-on-32bit.patch;
# https://github.com/pxqr/base32-bytestring/issues/4
base32-bytestring = dontCheck super.base32-bytestring;
+ # https://github.com/JohnLato/listlike/pull/6#issuecomment-137986095
+ ListLike = dontCheck super.ListLike;
+
+ # https://github.com/goldfirere/singletons/issues/122
+ singletons = dontCheck super.singletons;
+
+ # cabal2nix doesn't pick up some of the dependencies.
+ ginsu = let
+ g = addBuildDepend super.ginsu pkgs.perl;
+ g' = overrideCabal g (drv: {
+ executableSystemDepends = (drv.executableSystemDepends or []) ++ [
+ pkgs.ncurses
+ ];
+ });
+ in g';
+
+ # https://github.com/guillaume-nargeot/hpc-coveralls/issues/52
+ hpc-coveralls = disableSharedExecutables super.hpc-coveralls;
+ hpc-coveralls_0_9_0 = disableSharedExecutables super.hpc-coveralls_0_9_0;
+
+ # Test suite won't compile.
+ semigroupoids_5_0_0_3 = dontCheck super.semigroupoids_5_0_0_3;
+
+ # This is fixed in newer versions.
+ zip-archive_0_2_3_5 = addBuildTool super.zip-archive_0_2_3_5 pkgs.zip;
+
+ # https://github.com/fpco/stackage/issues/838
+ cryptonite = dontCheck super.cryptonite;
+ cryptonite_0_6 = dontCheck super.cryptonite_0_6 ;
+
+ # https://github.com/fpco/stackage/issues/843
+ hmatrix-gsl-stats_0_4_1 = overrideCabal super.hmatrix-gsl-stats_0_4_1 (drv: {
+ postUnpack = "rm */Setup.lhs";
+ });
+
+ # We cannot build this package w/o the C library from .
+ phash = markBroken super.phash;
+
+ # https://github.com/yesodweb/serversession/issues/2
+ # https://github.com/haskell/cabal/issues/2661
+ serversession-backend-acid-state_1_0_1 = dontCheck super.serversession-backend-acid-state_1_0_1;
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 28092f8d886f..c685f3103931 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -41,7 +41,7 @@ self: super: {
# Cabal_1_22_1_1 requires filepath >=1 && <1.4
cabal-install = dontCheck (super.cabal-install.override { Cabal = null; });
- # Don't use jailbreak built with Cabal 1.22.x because of https://github.com/peti/jailbreak-cabal/issues/9.
+ # Don't compile jailbreak-cabal with Cabal 1.22.x because of https://github.com/peti/jailbreak-cabal/issues/9.
Cabal_1_23_0_0 = overrideCabal super.Cabal_1_22_4_0 (drv: {
version = "1.23.0.0";
src = pkgs.fetchFromGitHub {
@@ -54,24 +54,21 @@ self: super: {
doHaddock = false;
postUnpack = "sourceRoot+=/Cabal";
});
- jailbreak-cabal = overrideCabal super.jailbreak-cabal (drv: {
- executableHaskellDepends = [ self.Cabal_1_23_0_0 ];
- preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal";
- });
+ jailbreak-cabal = super.jailbreak-cabal.override {
+ Cabal = self.Cabal_1_23_0_0;
+ mkDerivation = drv: self.mkDerivation (drv // {
+ preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal";
+ });
+ };
- idris =
- let idris' = overrideCabal super.idris (drv: {
- # "idris" binary cannot find Idris library otherwise while building.
- # After installing it's completely fine though. Seems like Nix-specific
- # issue so not reported.
- preBuild = "export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH";
- # https://github.com/idris-lang/Idris-dev/issues/2499
- librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
- });
- in idris'.overrideScope (self: super: {
- # https://github.com/idris-lang/Idris-dev/issues/2500
- zlib = self.zlib_0_5_4_2;
- });
+ idris = overrideCabal super.idris (drv: {
+ # "idris" binary cannot find Idris library otherwise while building.
+ # After installing it's completely fine though. Seems like Nix-specific
+ # issue so not reported.
+ preBuild = "export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH";
+ # https://github.com/idris-lang/Idris-dev/issues/2499
+ librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
+ });
Extra = appendPatch super.Extra (pkgs.fetchpatch {
url = "https://github.com/seereason/sr-extra/commit/29787ad4c20c962924b823d02a7335da98143603.patch";
@@ -80,7 +77,7 @@ self: super: {
# haddock: No input file(s).
nats = dontHaddock super.nats;
- bytestring-builder = dontHaddock super.bytestring-builder;
+ bytestring-builder = dontHaddock (triggerRebuild super.bytestring-builder 1);
# We have time 1.5
aeson = disableCabalFlag super.aeson "old-locale";
@@ -178,22 +175,6 @@ self: super: {
in addBuildDepends jsaddle' [ self.glib self.gtk3 self.webkitgtk3
self.webkitgtk3-javascriptcore ];
- # https://github.com/cartazio/arithmoi/issues/1
- arithmoi = markBroken super.arithmoi;
- NTRU = dontDistribute super.NTRU;
- arith-encode = dontDistribute super.arith-encode;
- barchart = dontDistribute super.barchart;
- constructible = dontDistribute super.constructible;
- cyclotomic = dontDistribute super.cyclotomic;
- diagrams = dontDistribute super.diagrams;
- diagrams-contrib = dontDistribute super.diagrams-contrib;
- enumeration = dontDistribute super.enumeration;
- ghci-diagrams = dontDistribute super.ghci-diagrams;
- ihaskell-diagrams = dontDistribute super.ihaskell-diagrams;
- nimber = dontDistribute super.nimber;
- pell = dontDistribute super.pell;
- quadratic-irrational = dontDistribute super.quadratic-irrational;
-
# https://github.com/lymar/hastache/issues/47
hastache = dontCheck super.hastache;
@@ -209,52 +190,12 @@ self: super: {
# http://hub.darcs.net/ivanm/graphviz/issue/5
graphviz = dontCheck (dontJailbreak (appendPatch super.graphviz ./patches/graphviz-fix-ghc710.patch));
- # Broken with GHC 7.10.x.
- aeson_0_7_0_6 = markBroken super.aeson_0_7_0_6;
- Cabal_1_20_0_3 = markBroken super.Cabal_1_20_0_3;
- cabal-install_1_18_1_0 = markBroken super.cabal-install_1_18_1_0;
- containers_0_4_2_1 = markBroken super.containers_0_4_2_1;
- control-monad-free_0_5_3 = markBroken super.control-monad-free_0_5_3;
- haddock-api_2_15_0_2 = markBroken super.haddock-api_2_15_0_2;
- QuickCheck_1_2_0_1 = markBroken super.QuickCheck_1_2_0_1;
- seqid-streams_0_1_0 = markBroken super.seqid-streams_0_1_0;
- vector_0_10_9_2 = markBroken super.vector_0_10_9_2;
- hoopl_3_10_2_0 = markBroken super.hoopl_3_10_2_0;
-
# https://github.com/HugoDaniel/RFC3339/issues/14
timerep = dontCheck super.timerep;
- # Upstream has no issue tracker.
- llvm-base-types = markBroken super.llvm-base-types;
- llvm-analysis = dontDistribute super.llvm-analysis;
- llvm-data-interop = dontDistribute super.llvm-data-interop;
- llvm-tools = dontDistribute super.llvm-tools;
-
- # Upstream has no issue tracker.
- MaybeT = markBroken super.MaybeT;
- grammar-combinators = dontDistribute super.grammar-combinators;
-
# Required to fix version 0.91.0.0.
wx = dontHaddock (appendConfigureFlag super.wx "--ghc-option=-XFlexibleContexts");
- # Upstream has no issue tracker.
- Graphalyze = markBroken super.Graphalyze;
- gbu = dontDistribute super.gbu;
- SourceGraph = dontDistribute super.SourceGraph;
-
- # Upstream has no issue tracker.
- markBroken = super.protocol-buffers;
- caffegraph = dontDistribute super.caffegraph;
-
- # Deprecated: https://github.com/mikeizbicki/ConstraintKinds/issues/8
- ConstraintKinds = markBroken super.ConstraintKinds;
- HLearn-approximation = dontDistribute super.HLearn-approximation;
- HLearn-distributions = dontDistribute super.HLearn-distributions;
- HLearn-classification = dontDistribute super.HLearn-classification;
-
- # Doesn't work with LLVM 3.5.
- llvm-general = markBroken super.llvm-general;
-
# Inexplicable haddock failure
# https://github.com/gregwebs/aeson-applicative/issues/2
aeson-applicative = dontHaddock super.aeson-applicative;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index 3579c697adac..e5f5d3c953a9 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -121,10 +121,6 @@ self: super: {
# needs mtl-compat to build with mtl 2.1.x
cgi = addBuildDepend super.cgi self.mtl-compat;
- # Newer versions always trigger the non-deterministic library ID bug
- # and are virtually impossible to compile on Hydra.
- conduit = super.conduit_1_2_4_1;
-
# https://github.com/magthe/sandi/issues/7
sandi = overrideCabal super.sandi (drv: {
postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
@@ -133,4 +129,13 @@ self: super: {
# Overriding mtl 2.2.x is fine here because ghc-events is an stand-alone executable.
ghc-events = super.ghc-events.override { mtl = self.mtl_2_2_1; };
+ # The network library is required in configurations that don't have network-uri.
+ hxt = addBuildDepend super.hxt self.network;
+ hxt_9_3_1_7 = addBuildDepend super.hxt_9_3_1_7 self.network;
+ hxt_9_3_1_10 = addBuildDepend super.hxt_9_3_1_10 self.network;
+ hxt_9_3_1_12 = addBuildDepend super.hxt_9_3_1_12 self.network;
+ xss-sanitize = addBuildDepend super.xss-sanitize self.network;
+ xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network;
+ xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network;
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix
index bec8fabae201..3a689105c1c1 100644
--- a/pkgs/development/haskell-modules/configuration-ghcjs.nix
+++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix
@@ -7,7 +7,7 @@ self: super: {
# LLVM is not supported on this GHC; use the latest one.
inherit (pkgs) llvmPackages;
- inherit (pkgs.haskell.packages.ghc7102) jailbreak-cabal alex happy;
+ inherit (pkgs.haskell.packages.ghc7102) jailbreak-cabal alex happy gtk2hs-buildtools;
# Many packages fail with:
# haddock: internal error: expectJust getPackageDetails
@@ -70,12 +70,6 @@ self: super: {
configureFlags = [];
});
- dependent-map = overrideCabal super.dependent-map (drv: {
- preConfigure = ''
- sed -i 's/^.*trust base.*$//' *.cabal
- '';
- });
-
profunctors = overrideCabal super.profunctors (drv: {
preConfigure = ''
sed -i 's/^{-# ANN .* #-}//' src/Data/Profunctor/Unsafe.hs
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
new file mode 100644
index 000000000000..1c9ec4997172
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -0,0 +1,3626 @@
+# pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+
+compiler: ghc-7.10
+
+core-packages:
+ - array-0.5.1.0
+ - base-4.8.1.0
+ - binary-0.7.5.0
+ - bin-package-db-0.0.0.0
+ - bytestring-0.10.6.0
+ - Cabal-1.22.4.0
+ - containers-0.5.6.2
+ - deepseq-1.4.1.1
+ - directory-1.2.2.0
+ - filepath-1.4.0.0
+ - ghc-7.10.2
+ - ghc-prim-0.4.0.0
+ - haskeline-0.7.2.1
+ - hoopl-3.10.0.2
+ - hpc-0.6.0.2
+ - integer-gmp-1.0.0.0
+ - pretty-1.1.2.0
+ - process-1.2.3.0
+ - rts-1.0
+ - template-haskell-2.10.0.0
+ - terminfo-0.4.0.1
+ - time-1.5.0.1
+ - transformers-0.4.2.0
+ - unix-2.7.1.0
+ - xhtml-3000.2.1
+
+default-package-overrides:
+
+extra-packages:
+ - aeson < 0.8 # newer versions don't work with GHC 6.12.3
+ - Cabal == 1.18.* # required for cabal-install et al on old GHC versions
+ - Cabal == 1.20.* # required for cabal-install et al on old GHC versions
+ - containers < 0.5 # required to build alex with GHC 6.12.3
+ - control-monad-free < 0.6 # newer versions don't compile with anything but GHC 7.8.x
+ - deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3
+ - descriptive < 0.1 # required for structured-haskell-mode-1.0.8
+ - gloss < 1.9.3 # new versions don't compile with GHC 7.8.x
+ - haddock-api < 2.16 # required on GHC 7.8.x
+ - haskell-src-exts < 1.16 # required for structured-haskell-mode-1.0.8
+ - mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x
+ - mtl-prelude < 2 # required for to build postgrest on mtl 2.1.x platforms
+ - parallel == 3.2.0.3 # newer versions don't work with GHC 6.12.3
+ - primitive == 0.5.1.* # required to build alex with GHC 6.12.3
+ - QuickCheck < 2 # required by test-framework-quickcheck and its users
+ - seqid < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
+ - seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
+ - split < 0.2 # newer versions don't work with GHC 6.12.3
+ - tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x
+ - vector < 0.10.10 # newer versions don't work with GHC 6.12.3
+ - zlib < 0.6 # newer versions break cabal-install
+
+package-maintainers:
+ simons:
+ - cabal2nix
+ - cabal-install
+ - funcmp
+ - git-annex
+ - hackage-db
+ - hledger-interest
+ - hopenssl
+ - hsdns
+ - hsemail
+ - hsyslog
+ - jailbreak-cabal
+ - language-nix
+ - stack
+ - streamproc
+ gebner:
+ - hledger-diff
+ gridaphobe:
+ - ghc-srcspan-plugin
+ - liquid-fixpoint
+ - liquidhaskell
+ - located-base
+ - target
+ jb55:
+ - skeletons
+ - cased
+ - pipes-csv
+ - pipes-mongodb
+ khumba:
+ - goatee
+ - goatee-gtk
+ psibi:
+ - path-pieces
+ - persistent
+ - persistent-mongoDB
+ - persistent-mysql
+ - persistent-postgresql
+ - persistent-redis
+ - persistent-sqlite
+ - persistent-template
+ - persistent-zookeeper
+ - shakespeare
+
+dont-distribute-packages:
+ # hard restrictions that really belong into meta.platforms
+ AWin32Console: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DirectSound: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dx9base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dx9d3d: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dx9d3dx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfsevents: [ i686-linux, x86_64-linux ]
+ hommage-ds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-dhcp-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-errors: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-junction-point: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-notify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-security: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-services: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Win32-services-wrapper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ XInput: [ i686-linux, x86_64-linux, x86_64-darwin ]
+
+ # these packages depend on software with an unfree license
+ accelerate-cublas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-cuda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-cufft: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-fft: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-fourier-benchmark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-yices: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ccelerate-cuda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cublas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cufft: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gloss-raster-accelerate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libnvvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Obsidian: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ patch-image: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yices-easy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ]
+
+ # soft restrictions because of build errors
+ 3dmodels: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ 4Blocks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ abcBridge: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ abstract-par-accelerate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-BuildPlatform: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-arithmetic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-fftw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-fourier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-utility: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accentuateus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ access-time: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-EasyRaster-GTK: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-HalfInteger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acid-state-dist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acme-hq9plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ACME: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acme-inator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acme-numbersystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acme-schoenfinkel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ acme-zero: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-MiniTest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-Terminal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ActionKid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ activehs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ actor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AC-VanillaArray: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Adaptive-Blaisorblade: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adaptive-containers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Adaptive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adaptive-tuple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adblock2privoxy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adhoc-network: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adict: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adobe-swatch-exchange: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adp-multi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ adp-multi-monadiccp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Advgame: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-Basics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-Net: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-Real-Double: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-Real: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-Real-Interval: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-RnToRm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aeson-bson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AesonBson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aeson-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aeson-smart: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ afv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Agata: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ agda-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AGI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AhoCorasick: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ airbrake: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aivika-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ajhc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alea: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ algebraic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Allure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alpha: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alpino-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alsa-midi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alsa-pcm-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alsa-seq-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ altfloat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ alure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ amazon-emailer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ amazon-products: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AMI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ampersand: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ anansi-pandoc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ anatomy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ android-lint-summary: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AndroidViewHierarchyImporter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Animas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ antfarm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ anticiv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ antigate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ antimirov: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ antlrc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ anydbm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aosd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ apelsin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ apiary-helics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ apiary-purescript: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ apis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ api-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ apotiki: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ appc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ApplePush: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AppleScript: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ approx-rand-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arbb-vm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arb-fft: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ archiver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ archlinux: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ archlinux-web: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ argparser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arguedit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ariadne: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arith-encode: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ armada: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ array-forth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ArrayRef: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arrowapply-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arrow-improve: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arrowp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ArrowVHDL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ arx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ascii85-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ asic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ asil: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ASN1: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AspectAG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ assimp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ astrds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ astview: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ async-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aterm-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ atlassian-connect-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ atlassian-connect-descriptor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ atom-msp430: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ atomo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AttoJson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ attoparsec-csv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ attoparsec-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ attoparsec-text-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ attoparsec-text: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Attrac: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ atuin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ audiovisual: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ augeas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ augur: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Aurochs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ authoring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AutoForms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ autoproc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ avahi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ AvlTree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ awesomium-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ awesomium: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ awesomium-raw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-cloudfront-signer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-configuration-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-dynamodb-streams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-ec2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-elastic-transcoder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-general: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-kinesis-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-kinesis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-kinesis-reshard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-lambda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-performance-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-sdk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-sdk-text-converter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-sdk-xml-unordered: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-sign4: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aws-sns: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ azure-service-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ azurify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ backdropper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Baggins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bag: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo-launcher: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo-plugin-highlight: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo-plugin-photo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo-theme-blueprint: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamboo-theme-mini-html5: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bamse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ barchart: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ barley: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Barracuda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ barrie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ barrier-monad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BASIC: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ baskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ battleships: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bayes-stack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BCMtools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ beamable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ beautifHOL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bed-and-breakfast: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Befunge93: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bein: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ berkeleydb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BerkeleyDBXML: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ berp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bgzf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bidirectionalization-combined: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bidispec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ billboard-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ billeksah-forms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ billeksah-main: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ billeksah-pane: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ billeksah-services: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-derive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-file: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-indexed-tree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-protocol-zmq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-streams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binary-strict: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ binding-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-apr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-apr-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-bfd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-cctools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-codec2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-dc1394: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-eskit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-EsounD: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-fann: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-friso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-gts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-hdf5: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-K8055: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-libftdi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-librrd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-libstemmer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-libv4l2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-linux-videodev2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-mpdecimal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-sc3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bindings-sipc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bind-marshal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseBlast: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseDotP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseFasta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseFR3D: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Biobase: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseInfernal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseMAF: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseTrainingData: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseTurner: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BiobaseVienna: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ biosff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ biostockholm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bird: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BirdPP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bit-array: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bitcoin-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bitly-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Bitly: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bits-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bitset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bitspeak: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ BitSyntax: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bittorrent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bkr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ black-jewel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bla: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blakesum-demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blakesum: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blank-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blas-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blaze-html-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blaze-html-hexpat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blazeMarker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blaze-textual-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Blobs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blogination: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Blueprint: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bluetile: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bluetileutils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ board-games: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bogre-banana: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ boolean-normal-forms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ boolsimplifier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ boomslang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ borel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ brainfuck-monad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Bravo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ breakout: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ brians-brain: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ brillig: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ broker-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bsd-sysctl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bson-generics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bson-mapping: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ btree-concurrent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ buildbox-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ buildwrapper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bullet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ buster-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ buster: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Buster: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ buster-network: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bustle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestring-arbitrary: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestring-class: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestring-csv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestringparser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestringreadp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestring-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bytestring-short: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal2arch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal2doap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal2spec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-constraints: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-dev: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-ghci: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-graphdeps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabalgraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-install-bundle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-install-ghc72: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-install-ghc74: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabalmdvrpm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-query: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabalrpmdeps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-setup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabal-upload: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cabocha: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cairo-appbase: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cake3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cakyrespa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cal3d-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cal3d: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cal3d-opengl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ calc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ caldims: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ caledon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ call-haskell-from-anything: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ call: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ campfire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cantor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cao: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Capabilities: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ capri: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ carboncopy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ carettah: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings-control: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings-internal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings-ipopt-interface: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casadi-bindings-snopt-interface: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Cascade: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cascading: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cassandra-thrift: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cassava-streams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cassy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ casui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Catana: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ catch-fd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ categorical-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ category-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CBOR: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont-alt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont-cxe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont-exc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont-ref: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CC-delcont-ref-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cci: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cctools-workqueue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cedict: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ceilometer-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cellrenderer-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cereal-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cereal-ieee754: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cereal-plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ certificate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cfipu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cflp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cfopu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cgen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cgi-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chalkboard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chalkboard-viewer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ charade: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Chart-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Chart-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chatter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ checked: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ check-pvp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chevalier-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Chitra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chp-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chp-plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chp-spec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chp-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ChristmasTree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chuchu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chunks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cil: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cinvoke: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ c-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ citation-resolve: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ citeproc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ citeproc-hs-pandoc-filter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cjk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clac: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clafer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ claferIG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ claferwiki: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CLASE: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clash-prelude-quickcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ClassLaws: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ClassyPrelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clckwrks-plugin-bugs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Clean: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clevercss: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ click-clack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clifford: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clipper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clippings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clocked: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clogparse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clone-all: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cloudfront-signer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cloud-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cloudyfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clua: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cluss: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clustertools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clutterhs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cmath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cmathml3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CMCompare: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cmdargs-browser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cmdtheline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cmonad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cnc-spec-compiler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cndict: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Coadjute: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Codec-Image-DevIL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ codec-libevent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ codecov-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ codemonitor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ codepad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cognimeta-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coinbase-exchange: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ colada: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collada-output: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collada-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collections-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collections-base-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collections: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coltrane: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinat-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinatorial-problems: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinator-interactive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Combinatorrent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ com: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Commando: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ commodities: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ commsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ commsec-keyexchange: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ comonad-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ comonad-random: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compact-map: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compact-string: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compilation: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ complexity: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compose-trans: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compression: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ compstrat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ comptrans: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ computational-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ concraft-hr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ concraft: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ concraft-pl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ concrete-typerep: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ concurrent-state: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ConcurrentUtils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ condorcet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ condor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Condor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conductive-hsc3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conduit-audio-lame: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conduit-audio-samplerate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conduit-iconv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conduit-network-stream: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conduit-resumablesink: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Configger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ config-select: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ conjure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ consistent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ const-math-ghc-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ConstraintKinds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ constructive-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Consumer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ context-stack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ continue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ continuum-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ continuum: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Contract: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ control-event: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ control-monad-attempt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ control-monad-failure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ control-monad-failure-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Control-Monad-MultiPass: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Control-Monad-ST2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ contstuff-monads-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ contstuff-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ convertible-ascii: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ convertible-text: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-c99: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-cbmc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-language: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-libraries: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ copilot-sbv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ COrdering: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ corebot-bliki: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CoreErlang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CoreFoundation: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ core-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Coroutine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coroutine-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ couchdb-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ couchdb-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CouchDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ couch-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ court: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coverage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CPBrainfuck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cpio-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CPL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cplusplus-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cpuperf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cpython: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cqrs-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cqrs-sqlite3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cqrs-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Craft3e: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ craftwerk-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ craftwerk-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ craftwerk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crc16: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crf-chain1-constrained: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crf-chain1: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crf-chain2-generic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crf-chain2-tiers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ criterion-plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crocodile: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cron-compat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crunghc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crypto-cipher-benchmarks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cryptsy-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ crystalfontz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cse-ghc-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ csound-catalog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ csound-expression: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ csound-sampler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ csp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cspmchecker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CSPM-cspm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CSPM-FiringRules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CSPM-Frontend: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CSPM-Interpreter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CSPM-ToProlog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ css: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ctemplate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ctkl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ctpl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cubicbezier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cudd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ curry-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CurryDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ curry-frontend: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cursedcsv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ curves: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ CV: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ cypher: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DAG-Tournament: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dangerous: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dao: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dao: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dapi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs2dot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-benchmark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-beta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-buildpackage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-cabalized: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcsden: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-fastconvert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DarcsHelpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcs-monitor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darcswatch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ darkplaces-demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-cycle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-dispersal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-easy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-ivar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-lens-ixset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ datalog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-named: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-nat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-object-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-object-yaml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-quotientref: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-rope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Data-Rope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-store: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DataTreeView: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ data-type: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dbjava: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dbus-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dbus-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DBus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dclabel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-build: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-eval: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-flow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-llvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-salt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-simpl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-core-tetra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-driver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddci-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-source-tetra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ddc-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Deadpan-DDP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dead-simple-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ decepticons: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DecisionTree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ decoder-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dedukti: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deeplearning-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deepseq-bounded: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deepseq-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deepzoom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ defargs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DefendTheKing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-filesystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-graphics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-reactive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ definitive-sound: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deka: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ deka-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ delicious: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ delta-h: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ demarcate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ denominate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ depends: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dephd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dequeue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derangement: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derivation-trees: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derive-gadt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derive-IG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derive-topdown: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derive-trie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ derp-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dewdrop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dflow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dfsbuild: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dgim: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dgs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-pdf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-pgf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-qrcode: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-tikz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dice-entropy-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dictparser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diffcabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DifferenceLogic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DifferentialEvolution: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ digestive-functors-hsp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DimensionalHash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dingo-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dingo-example: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dingo-widgets: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diophantine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diplomacy-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ direct-binary-files: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ directed-cubical: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ direct-fastcgi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ direct-http: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ direct-plugins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dirfiles: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ discount: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ disjoint-set: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DisTract: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-async: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-azure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-client-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-execution: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-platform: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-registry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-supervisor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-task: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distributed-process-zookeeper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distribution: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ distribution-plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ djinn-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DnaProteinAlignment: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dnscache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dnssd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ doccheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ docidx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dockercook: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ docker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ doc-review: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ doctest-discover-configurator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ doctest-discover: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DocTest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DOM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ download: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ download-media-content: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dph-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dph-lifted-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dph-lifted-copy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dph-lifted-vseg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dph-prim-par: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dpkg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DPM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ drClickOn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DrHylo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DrIFT-cabalized: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ drifter-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DrIFT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dropbox-sdk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dropsolve: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ds-kanren: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dsmc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dsmc-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dsp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DSTM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dstring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DTC: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dtd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dtd-text: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dtd-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dtw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ duplo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dust-crypto: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dust: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dust-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Dust-tools-pcap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dvda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dvdread: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dynamic-object: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dynamic-plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dynamic-pp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DynamicTimeWarp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dynobud: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DysFRP-Cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ DysFRP-Craftwerk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ easy-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ easyjson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ easyplot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ easyrender: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ebnf-bff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ecdsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ecu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ed25519: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ edenmodules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ edenskel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ edentv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ edge: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EdisonCore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ edit-lenses: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ editline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EditTimeReport: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EEConfig: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ effective-aspects: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ effective-aspects-mzv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ effect-monad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ egison-quote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ehaskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ehs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ eibd-client-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EitherT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ email-header: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ email: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ email-postmark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ embeddock-example: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ embeddock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ embroidery: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ emgm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Emping: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Encode: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ enumeration: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ enumfun: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EnumMap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ enummapmap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ env-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ epoll: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ epubname: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Eq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ erlang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ eros-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ error-message: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ersatz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ersatz-toysat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ esotericbot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EsounD: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ estimators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ estreps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Etage-Graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Etage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EtaMOO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Eternal10Seconds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ eternal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Etherbunny: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ethereum-client-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ethereum-merkle-patricia-db: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ euphoria: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ eurofxref: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Euterpea: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ event-driven: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ event-monad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ EventSocket: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ every-bit-counts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ewe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ exif: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ exists: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ expand: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ expat-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ explain: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ explicit-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ explore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ exposed-containers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ exp-pairs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ extcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ extemp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ extended-categories: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ external-sort: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ez-couch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ faceted: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ factual-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FailureT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fallingblocks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ falling-turnip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fastirc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fast-tags: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fault-tree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fay-hsx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fcd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fckeditor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FComp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fdo-trash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feed2lj: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feed2twitter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feed-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feed-translator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feldspar-compiler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ feldspar-language: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fenfire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FermatsLastMargin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FerryCore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ffeed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ffmpeg-tutorials: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fibon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fields: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FieldTrip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fieldwise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FileManipCompat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FileManip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ filesystem-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ filesystem-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FileSystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Finance-Quote-Yahoo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Finance-Treasury: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ find-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FiniteMap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ firstify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FirstOrderTheory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fitsio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixed-point: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixed-point-vector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixed-point-vector-space: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixed-precision: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixed-storable-array: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fix-parser-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fixplate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fix-symbols-gitit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flexiwrap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flexiwrap-smallcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flickr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Flippi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ floating-bits: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flow2dot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flowdock-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flower: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flowlocks-framework: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ flowsim: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fltkhs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FModExRaw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FM-SBLEX: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ foldl-incremental: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ foldl-transduce: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ folds-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ folds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ follower: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ foma: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ font-opengl-basic4x6: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ foo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ forbidden-fruit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fordo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ for-free: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ formal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ format: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ format-status: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ formlets-hsp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ formlets: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ forml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ForSyDe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ forth-hll: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Foster: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fpco-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fpnla-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FPretty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ frag: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ frame-markdown: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ franchise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Frank: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-game: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ freekick2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-operational: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ freesect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ freesound: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-theorems-counterexamples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-theorems: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-theorems-seq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-theorems-seq-webui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ free-theorems-webui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ FreeTypeGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ friday-juicypixels: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ frp-arduino: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ frpnow-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fs-events: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fsmActions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ftdi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ftp-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ftshell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ full-sessions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fullstop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ funbot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ functional-arrow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ function-combine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ functorm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ funion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ funsat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ future: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fuzzytime: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gact: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gameclock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ game-of-life: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Ganymede: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gbu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gc-monitoring-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gdiff-ig: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gdiff-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GeBoP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geek: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geek-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gencheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gender: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ genders: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ general-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GeneralTicTacToe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ generators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ generic-church: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ genericserialize: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ generic-storable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ generic-xml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ genetics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geniconvert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geni-gui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GenI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geniserver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geni-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GenSmsPdu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geodetics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GeoIp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GeomPredicates-SSE: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ getemx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ getflag: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ggtsTC: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-dup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-events-analyze: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-events-parallel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghci-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghci-haskeline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-imported-from: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghci-ng: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghcjs-dom-hello: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghcjs-dom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghclive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-parmake: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-pkg-autofix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-pkg-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-syb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ghc-vis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ght: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-all: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-checklist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-date: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gitdo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-gpush: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gitlib-cross: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gitlib-s3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gitlib-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-repair: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ git-vogue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ glade: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gladexml-accessor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GLFW-OGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ glider-nlp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ global: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ glome-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GlomeTrace: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GlomeView: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gloss-devil: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gmap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gmndl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gnome-desktop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gnome-keyring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ g-npm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ goa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gofer-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GoogleDirections: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ google-html5-slide: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ google-mail-filters: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ googleplus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GoogleSB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ google-search: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GoogleTranslate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gopherbot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gpah: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GPipe-Collada: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GPipe-Examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GPipe-TextureLoad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gps2htmlReport: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gpx-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GPX: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grammar-combinators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grapefruit-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grapefruit-frp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grapefruit-records: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grapefruit-ui-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grapefruit-ui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Graph500: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graphbuilder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GraphHammer-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GraphHammer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graphics-formats-collada: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graphicsFormats: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graphicstools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-cl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-gl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-lambdascope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-layout: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-ski: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-strategies: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-trs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-rewriting-ww: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graphtype: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ graph-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ greencard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ greencard-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ greg-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Grempa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ grm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Grow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GrowlNotify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gruff-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gruff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gsl-random-fu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gsl-random: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gsmenu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gstreamer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GTALib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-cast-glade: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-cast-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-cast-gtksourceview2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Gtk2hsGenerics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-hello: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk2hs-rpn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk3-mac-integration: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GtkGLTV: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-helpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtkimageview: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-jsinput: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-largeTreeStore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-mac-integration: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtkrsync: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-serialized-event: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-simple-list-view: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtksourceview2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtksourceview3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-toggle-button-list: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-toy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gtk-traymanager: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GtkTV: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ guess-combinator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GuiHaskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ GuiTV: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gulcii: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hach: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack2-handler-happstack-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack2-handler-mongrel2-http: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack2-handler-warp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack2-interface-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage2hwn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage2twitter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-proxy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-repo-tool: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-security-HTTP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-security: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackage-sparks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-contrib-press: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hackernews: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-frontend-happstack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-epoll: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-evhttp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-fastcgi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-happstack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-hyena: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-kibro: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-handler-simpleserver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HackMail: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-middleware-cleanpath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-middleware-clientsession: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hack-middleware-jsonp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hactor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haddock-leksah: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haggis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Haggressive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hails-bin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hails: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hairy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakaru: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakismet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-blaze-templates: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-contrib-links: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-convert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-elm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hakyll-R: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ halberd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaLeX: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ halfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ halipeto: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ halma: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hampp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hamtmap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hamusic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hannahci: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happindicator3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happindicator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happraise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HAppS-Data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happs-hsp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happs-hsp-template: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HAppS-IxSet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HAppS-Server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HAppS-State: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-auth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-dlg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-facebook: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-fay: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-heist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-helpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-ixset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-monad-peel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-plugins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-state: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happstack-yui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happs-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HAppS-Util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happybara: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happybara-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ happybara-webkit-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ harchive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaRe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HARM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HarmTrace-Base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HarmTrace: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haroonga-httpd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haroonga: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hascal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hascat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hascat-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hascat-setup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hascat-system: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Haschoo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HasGP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hashable-generics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hashed-storage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hashell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ has: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hasim: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskarrow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskeem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskeline-class: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell2010: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell98: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-aliyun: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-awk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-bcrypt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-brainfuck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-cnc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-course-preludes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-connect-hdbc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-dynamic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hdbc-mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hsql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hsql-mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hsql-odbc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hsql-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-hsql-sqlite3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelldb-wx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-docs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-formatter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-ftp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-in-space: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaskellNN: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Haskelloids: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-openflow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-pdf-presenter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-platform-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-reflect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-rules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskellscrabble: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-src-meta-mwotton: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-token-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaskellTorrent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-type-exts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-tyrant: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskell-xmpp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskelm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskgame: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskheap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskhol-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hask-home: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hask: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin-crypto: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin-protocol: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin-script: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoin-wallet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoon-httpspec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskoon-salvia: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskore-realtime: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskore-supercollider: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskore-synthesizer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haskore-vintage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hasloGUI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haslo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hasparql-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haste-perch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ has-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hatex-guide: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaTeX-meta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haverer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HaVSA: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hawitter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hawk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ haxparse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hayland: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hayoo-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hayoo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hback: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hbayes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hbb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hBDD-CMUBDD: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hBDD-CUDD: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hbeat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hblas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hblock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ h-booru: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hbro: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hburg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HCard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hcheat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hchesslib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HCL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hcron: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hCsound: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hcube: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdaemonize-buildfix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HDBC-mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdbi-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdbi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdbi-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdbi-sqlite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdbi-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hDFA: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdigest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdirect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdis86: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdiscount: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdph-closure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hdph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HDRUtils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hecc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hedi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hedn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ heist-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ helics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ helics-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ helium: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hellage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hellnet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ helm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hemkay: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hemokit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ henet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hepevt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HERA: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ herbalizer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ her-lexer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ her-lexer-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hermes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hermit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hermit-syb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ herringbone-embed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ herringbone: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ herringbone-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hesql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hetris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ heukarya: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hevolisa-dph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hevolisa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hexpat-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hexpat-pickle-generic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hexquote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hF2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfann: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfiar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfractal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HFrequencyQueue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hfusion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgalib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-API: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Audio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Bullet-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-CAudio-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Enet-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Graphics3D: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-GUI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-InputSystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Network: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Ogre-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-OIS-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-SDL2-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-SFML-Binding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-WinEvent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGamer3D-Wire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hg-buildpackage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgeometric: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgeometry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgithub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ h-gpgme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HGraphStorage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hgrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hharp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HHDL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ H: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hiccup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hichi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hieraclus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hierarchical-clustering-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hiernotify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hieroglyph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HiggsSet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ higherorder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ highWaterMark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ himg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ himpy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hinduce-classifier-decisiontree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hinduce-classifier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hinduce-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hinvaders: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hinze-streams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hipbot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hircules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hirt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hissmetrics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ historian: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hist-pl-fusion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hist-pl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hist-pl-lmf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hjs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HJVM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlatex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlbfgsb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlcm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLearn-algebra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLearn-approximation: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLearn-classification: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLearn-datastructures: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLearn-distributions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hledger-chart: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hledger-vty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlibev: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlibfam: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlogger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HLogger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hly: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmark: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmarkup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-banded: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-glpk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-gsl-stats: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-quadprogpp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-special: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-static: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-syntax: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmatrix-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmeap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmeap-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmenu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmm-hmatrix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HMM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hMollom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmp3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hmpf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmpfr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hmumps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HNM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hnn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoauth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hobbes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hobbits: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hob: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HODE: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hofix-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hogg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hogre-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hogre: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hois: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hole: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Holumbus-Distribution: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Holumbus-MapReduce: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Holumbus-Searchengine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Holumbus-Storage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ homeomorphic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hommage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HongoDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ honi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-builder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-extra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-publish: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-render: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoodle-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hood-off: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoovie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hopencc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hopencl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hOpenPGP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hopenpgp-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hopfield: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hoq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hosts-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hotswap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hp2any-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hp2any-graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpapi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpaste: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpasteit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HPath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpc-tracer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hPDB-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hplayground: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hplaylist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HPlot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpodder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HPong: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hprotoc-fork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hps-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpygments: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpylos: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hquantlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hranker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HRay: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hR: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hricket: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT-graf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT-hist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HROOT-math: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs2bf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs2dot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hs2lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsbackup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-blake2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc2hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-forth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-graphs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-lang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-lisp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-rec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsc3-unsafe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hscamwire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-carbon-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hscassandra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-cdb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsclock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hscurses-fish-ex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hscurses: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsdev: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsdip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsdns-cache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-dotnet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hsed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsfacter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSFFIG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-ffmpeg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-fltk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-gchart: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-GeoIP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSGEP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsgnutls: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsgnutls-yj: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsgsom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HsHaruPDF: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSHHelpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HsHyperEstraier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsignal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hSimpleDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-java: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-json-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HsJudy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hskeleton: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hslackbuilder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hslibsvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hslogger-reader: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-logo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hslogstash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsmagick: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSmarty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Hsmtlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsmtpclient: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsndfile-storablevector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsnock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-nombre-generator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsns: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsntp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsoptions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSoundFile: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsparql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsp-cgi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hspear: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hspec-experimental: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hspec-shouldbe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HsPerl5: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-pgms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-pkpass: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hspread: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hspresent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsprocess: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsql-mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsqml-datamodel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsqml-demo-morris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsqml-demo-samples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsqml-morris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsSqlite3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HsSVN: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstatistics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstats: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstidy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstorchat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstradeking: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HStringTemplateHelpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-twitterarchiver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-twitter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstyle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hstzaar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsubconvert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hs-vcard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HSvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hswip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsXenCtrl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsx-xhtml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsyscall: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hszephyr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HTab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hTalos: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hTensor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HTicTacToe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ html-entities: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ htoml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ htsn-import: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-client-request-modifiers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-conduit-browser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-conduit-downloader: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-monad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-proxy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ https-everywhere-rules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-shed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ httpspec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ http-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ htune: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hubris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hugs2yc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hulk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hums: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HUnit-Diff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunit-gui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HUnit-Plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunit-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunt-searchengine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunt-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hurdle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ husk-scheme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ husk-scheme-libs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ husky: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hutton: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ huzzy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hVOIDP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hws: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hXmixer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxmppc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HXMPP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxournal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ HXQ: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxt-binary: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxt-filter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxthelper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hxweb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hybrid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydra-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-cli-args: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-parsing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-prelude-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-syntax: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hydrogen-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hyena: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hylolib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hylotab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hyloutils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hyperdrive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hyperpublic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hypher: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ i18n: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iban: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ideas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ideas-math: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ idiii: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ idna2008: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ IDynamic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ieee-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iException: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ IFS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ige-mac-integration: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ igraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ihaskell-inline-r: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ihaskell-widgets: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ihttp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ illuminate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ imagepaste: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ imbib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ imgurder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ imm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ imparse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ImperativeHaskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ improve: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ INblobs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ inch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ incremental-computing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ incremental-sat-solver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ increments: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ index-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ indian-language-font-converter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ indices: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ indieweb-algorithms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ infer-upstream: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ infinity: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ InfixApplicative: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ infix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ inflist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ informative: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ inilist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ instant-zipper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ integer-pure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ intel-aes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ interleavableGen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ interleavableIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ internetmarke: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ interpolatedstring-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ interpolatedstring-qq-mwotton: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ intricacy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ intset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ io-reactive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ IORefCAS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ IOR: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iotransaction: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ipatch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ipc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ipopt-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iptables-helpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iptadmin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ irc-fun-bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Irc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ireal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ isevaluated: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ isiz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ismtp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iteratee-compress: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iteratee-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iteratee-stm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iterIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iterio-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iter-stats: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-backend-c: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-bitdata: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-hw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-opts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-quickcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivory-stdlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ivy-web: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ixdopp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iyql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ j2hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jack-bindings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jackminimix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JackMiniMix: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jalla: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jarfind: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ java-bridge-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ java-bridge: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ java-reflect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ javasf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Javasf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ javav: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Javav: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jespresso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ join: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ joinlist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jonathanscard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jort: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jsaddle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jsc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JsContracts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ js-good-parts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jsmw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json2-hdbc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json-b: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JSONb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JSON-Combinator-Examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JSON-Combinator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JsonGrammar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jsonresume: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ json-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ jspath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ judy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JunkDB-driver-gdbm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ JYU-Utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kangaroo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kansas-comet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kansas-lava-cores: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kansas-lava: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kansas-lava-papilio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kansas-lava-shake: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ karakuri: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ katt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-mvc-view-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-reactive-fs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-hails-reactive-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keera-posture: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keiretsu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Ketchup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kevin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keyring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ keystore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kicad-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kickass-torrents-dump-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ KiCS-debugger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ KiCS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ KiCS-prophecy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kif-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kmeans-par: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ koellner-phonetic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Konf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ korfu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kqueue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ kure-your-boilerplate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ KyotoCabinet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ labeled-graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ laborantin-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ labyrinth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ labyrinth-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ laika: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambda2js: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdaBase: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdabot-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambda-bridge: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LambdaCalculator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacube-bullet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacube-engine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacube-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacube: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdacube-samples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambda-devs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdaFeed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LambdaHack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LambdaINet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdaLit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LambdaPrettyQuote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LambdaShell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambda-toolbox: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdatwit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdiff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lame-tester: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-bash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-boogie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-c-comments: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-c-inline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-eiffel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-go: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-java-classfile: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-mixal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-objc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-python-colour: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-sh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-spelling: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-sqlite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ language-thrift: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Lastik: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ latest-npm-version: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ launchpad-control: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ layers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ layout-bootstrap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ layout: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lazyarray: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lazysplines: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ l-bfgs-b: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lcs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ldap-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ldif: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ leaf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ leaky: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ learn-physics-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ learn-physics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ leksah: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ leksah-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ leveldb-haskell-fork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ levmar-chart: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lgtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lhae: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lha: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lhe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LibClang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libconfig: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libcspm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libexpect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libGenI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libhbb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libjenkins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libltdl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libnotify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ liboleg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libpafe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libpq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libssh2-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libsystemd-daemon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libvirt-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libxml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ libxslt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lifter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lighttpd-conf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lighttpd-conf-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lilypond: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Limit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ limp-cbc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lin-alg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linear-algebra-cblas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linear-maps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linearscan-hoopl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linearscan: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LinearSplit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LinkChecker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linkchk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linkcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linux-blkid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linux-kmod: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linux-perf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ linux-ptrace: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lio-eci11: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lio-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ listlike-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ list-t-html-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ literals: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ live-sequencer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ll-picosat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llsd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-analysis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-base-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-base-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-data-interop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-extra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-ffi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-general: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-general-quote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-ht: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ llvm-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ local-search: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ loch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ log2json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ log-effect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ logic-classes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LogicGrowsOnTrees: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LogicGrowsOnTrees-network: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LogicGrowsOnTrees-processes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lojban: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lojbanParser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lojbanXiragan: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lojysamban: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ loli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ loop-effin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ loopy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lord: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ loris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lostcities: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lscabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ L-seed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ LslPlus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ls-usb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lsystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ltk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ luachunk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lucienne: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Lucu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ luka: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lushtags: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ luthor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lvish: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lvmlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lye: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ maam: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MagicHaskeller: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mahoro: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ majordomo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ majority: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-all: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-anything: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-browser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-curl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-editor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-filemanager: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-imageviewer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-ircclient: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-mplayer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-pdfviewer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-processmanager: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-reader: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-template: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-terminal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ manatee-welcome: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mandulia: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ marionetta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ markdown2svg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ markdown-kate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ markdown-pap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ markov-processes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ markup-preview: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ marmalade-upload: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ marquise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ marxup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ masakazu-bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ matchers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mathblog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mathgenealogy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mathlink: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ matlab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ matsuri: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ maude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ maxent: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ maxsharing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ maybench: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MaybeT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MaybeT-monads-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MaybeT-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MazesOfMonad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mbox-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MC-Fold-DP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mcmc-samplers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mdcat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Measure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mecab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mediawiki2latex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mediawiki: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mega-sdist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ melody: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ memo-sqlite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ meta-par-accelerate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ metaplug: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ metric: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Metrics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ metronome: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mfsolve: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Mhailist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MHask: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mida: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ midisurface: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mighttpd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mime-directory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mime-string: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ minesweeper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MiniAgda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ miniball: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ miniforth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ minimung: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ minioperational: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ miniplex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ minirotate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ministg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mirror-tweet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ missing-py2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MissingPy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mix-arrows: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mkbndl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mlist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ml-w: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mmtl-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mmtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ moan: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ modelicaparser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ modsplit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ modular-prelude-classy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ modular-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ module-management: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mohws: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-abort-fd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monadacme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-atom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-atom-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-exception: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monadiccp-gecode: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monadiccp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-interleave: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Monadius: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MonadLab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-levels: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-lrs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-memo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-mersenne-random: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ MonadRandomLazy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-ran: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-stlike-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-stlike-stm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-tx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monad-unify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monarch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Monaris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Monatron: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Monatron-IO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mongodb-queue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mongrel2-handler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Monocle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mono-foldable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monoid-owns: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monoidplus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monoids: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ monte-carlo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ moo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ morfette: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ morfeusz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mosaico-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mount: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mp3decoder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mpdmate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mpppc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mpretty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mprover: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mps: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mpvguihs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ msgpack-idl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mtgoxapi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mtl-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mtlx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mtp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mudbath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multi-cabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multifocal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multipass: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multiplate-simplified: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multirec-alt-deriver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multirec-binary: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ multisetrewrite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ murder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ murmurhash3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ musicbrainz-email: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-graphics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-parts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-preludes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-score: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-sibelius: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-suite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ music-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ musicxml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mustache2hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mutable-iter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mvclient: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mvc-updates: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ myo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mysnapsession-example: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mysnapsession: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mysql-simple-quasi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mysql-simple-typed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ myTestlll: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mzv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nagios-plugin-ekg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ named-lock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nanoAgda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nano-cryptr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nanocurses: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nano-hmac: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nano-md5: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nanomsg-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ narc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nats-queue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ natural-number: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nc-indicators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ neat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ needle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nerf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nero: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nero-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nero-warp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nested-routes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ netcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ netlines: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NetSNMP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ netspec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nettle-frp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nettle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nettle-netkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nettle-openflow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-address: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-builder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-bytestring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-connection: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-minihttp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-rpca: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-simple-tls: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-topic-models: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-transport-amqp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ network-websocket: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ newports: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ newsynth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ newt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ newtype-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NGrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nibblestring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nikepub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Ninjas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nitro: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nkjp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nntp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ noise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nomyx-Core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nomyx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nomyx-Language: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nomyx-Rules: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nomyx-Web: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nondeterminism: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NonEmptyList: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ noodle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NoSlow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ not-gloss-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ notmuch-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ notmuch-web: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ np-linear: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nptools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nthable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ null-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NumberSieves: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ numerals-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ numerals: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ numeric-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Nussinov78: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nvim-hs-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nvim-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NXTDSL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ NXT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nymphaea: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ oberon0: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Object: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ objectid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ObjectIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ obj: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ octopus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ oculus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ofx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ohloh-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ oi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ois-input-manager: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ omaketex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ omega: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Omega: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ omnicodec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ on-a-horse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ one-liner: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ oneormore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ onu-course: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenAFP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenAFP-Utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenCL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenCLRaw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ opencv-raw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openexchangerates: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openflow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenGLCheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ opengles: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ open-pandoc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openpgp-crypto-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openpgp-Crypto: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenSCAD: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ openssh-github-keys: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ opentheory-char: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ open-union: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenVG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OpenVGRaw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ open-witness: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Operads: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ optimal-blocks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ optimusprime: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OrchestrateDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ orchid-demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ orchid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ order-maintenance: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ orgmode-parse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ origami: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ osdkeys: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ osm-download: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ OSM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ package-vt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ packedstring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ padKONTROL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PageIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ panda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PandocAgda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pandoc-unlit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ papillon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pappy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ paragon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Paraiso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parallel-tasks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parameterized-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parco-attoparsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parco: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parconc-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parco-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Parry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parsec2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parse-help: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parsely: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parser-helper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ parsestar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ partial-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ partly: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ passage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pastis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pasty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Pathfinder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pathfindingcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ patterns: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ paypal-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PCLT-DB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PCLT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pdf-toolbox-viewer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pdynload: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ peakachu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ peg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ penny-bin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ penny: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ penny-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ peparser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ perdure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PerfectHash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ perm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PermuteEffects: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ permute: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ persistent-hssqlppp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ persistent-map: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ persistent-protobuf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pesca: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ peyotls-codec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ peyotls: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pez: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pg-harness: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pg-harness-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pgsql-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pgstream: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ phasechange: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ phone-push: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ phooey: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ photoname: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ phraskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Phsu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ phybin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pianola: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pi-calculus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ picologic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ piet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ piki: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Pipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-cereal-plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-courier: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-network-tls: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-p2p-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pisigma: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pkggraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ planar-graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plivo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plot-gtk3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plot-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plot-gtk-ui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Plot-ho-matic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plot-lab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PlslTools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plugins-auto: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plugins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plugins-multistage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ plumbers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ png-file: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pngload-fixed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pngload: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pocket-dns: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pointless-lenses: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pointless-rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ polh-lexicon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ polyseq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ polytypeable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ polytypeable-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pontarius-mediaserver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pontarius-xmpp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pontarius-xpmn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pool-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pool: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ popenhs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ poppler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ porte: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ porter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ports: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ posix-acl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ posix-waitpid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PostgreSQL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ postgresql-schema: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ postgresql-simple-typed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ postgresql-typed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ postie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ postmaster: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ powermate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ powerpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pqc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pqueue-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ practice-room: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ precis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prednote-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prefork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pregame: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prelude-generalize: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prelude-plus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ preprocess-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ press: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ primula-board: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ primula-bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ printf-mauke: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Printf-TH: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ PriorityChansConverger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ priority-queue: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ProbabilityMonads: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ processing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-iterio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-leksah: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-listlike: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-progress: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ proc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ procrastinating-structure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ procrastinating-variable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ procstat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prof2dot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ progressbar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ progress: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ progression: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ progressive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ proj4-hs-bindings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prolog-graph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prolog-graph-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prolog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ propane: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Proper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ proplang: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ protobuf-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ protocol-buffers-descriptor-fork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ protocol-buffers-fork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ prove-everywhere-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ proxy-kindness: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ publicsuffixlistcreate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pubnub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pubsub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ puffytools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pugs-hsregex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pugs-HsSyck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Pugs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ punkt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Pup-Events-Demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ puppetresources: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pushme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ push-notify-ccs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ push-notify-general: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ push-notify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ putlenses: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ puzzle-draw-cmdline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ puzzle-draw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pvd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ python-pickle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ qd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ qd-vec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ qhull-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ QIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quadratic-irrational: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quantum-arrow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ qudb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quenya-verb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ querystring-pickle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ queuelike: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ QuickAnnotate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ QuickCheck-GenT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickcheck-poly: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickcheck-regex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickcheck-relaxng: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickcheck-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickpull: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quickset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Quickson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quicktest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ quoridor-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rabocsv2qif: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ radium-formula-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ radium: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rados-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rail-compiler-editor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rainbow-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rakhana: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ralist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rallod: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ random-access-list: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RandomDotOrg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ random-eff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ random-effin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ random-hypergeometric: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ random-stream: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rand-vars: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rangemin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Ranka: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ raven-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ raven-haskell-scotty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rbr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rcu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rdf4h: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rdioh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reaction-logic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-bacon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-balsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-banana-sdl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-banana-threepenny: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-fieldtrip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactive-thread: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reactor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ really-simple-xml-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reasonable-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ record-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ record-gl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ records: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ records-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ recursive-line-count: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ redHandlers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Redmine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Referees: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ refh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ref: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Ref: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reflection-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reflex-dom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-deriv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-dfa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-genex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-pderiv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regexp-tries: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regexqq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-tdfa-utf8: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-tre: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regex-xmlschema: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regional-pointers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regions-monadsfd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regions-monadstf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regions-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regular-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ regular-web: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reheat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reified-records: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rei: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ remote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ remotion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reorderable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repa-array: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repa-flow: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repa-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repa-series: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repa-v4l2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repo-based-blog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ representable-functors: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ representable-tries: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ repr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ resource-embed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ resource-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ respond: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ restful-snap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RESTng: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ restricted-workers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ restyle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ resumable-exceptions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rethinkdb-model: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ReviewBoard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rezoom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rhythm-game-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ riemann: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ riot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ripple-federation: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ripple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ risc386: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rivers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RJson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rmonad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RMP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RNAdesign: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RNAdraw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RNAFold: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RNAFoldProgs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RNAwolf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roguestar-engine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roguestar-gl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roguestar-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roguestar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RollingDirectory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rosa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roshask: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rosso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rotating-log: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rounding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roundtrip-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roundtrip: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roundtrip-string: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ roundtrip-xml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ route-generator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ route-planning: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rowrecord: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rpc-framework: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rpm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rsagl-frp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rsagl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rsagl-math: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rss2irc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rtorrent-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ruff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ruler-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rungekutta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ RxHaskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safe-freeze: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safe-globals: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safeint: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safe-lazy-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safe-plugins: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safer-file-handles-bytestring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safer-file-handles: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ safer-file-handles-text: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sai-shape-syb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Salsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ saltine-quickcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia-demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia-protocol: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia-sessions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ salvia-websocket: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ samtools-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sasl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ satchmo-backends: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ satchmo-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ satchmo-funsat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ satchmo-minisat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sat-micro-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SBench: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sbp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scaleimage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scalp-webhooks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scan-vector-machine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scenegraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ schedevr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scholdoc-citeproc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scholdoc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scion-browser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scope-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scottish: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scotty-blaze: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scotty-fay: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scotty-hastache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scotty-session: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scrabble-bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ScratchFs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scrobble: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scroll: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ scrz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Scurry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sdl2-image: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sdl2-ttf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ seacat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ search: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ secdh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ secret-santa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ secret-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ secrm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sednaDBXML: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ selectors: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ selenium: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ selenium-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ selinux: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Semantique: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ semigroups-actions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ semi-iso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ semiring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sensenet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sentry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ seqaid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SeqAlign: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ seqloc-datafiles: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sequent-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sequor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ servant-pool: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ servant-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ servant-scotty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ servius: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ses-html-snaplet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SessionLogger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sessions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ set-with: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sexp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sexpr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sext: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SFML-control: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SFML: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SFont: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SGdemo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SG: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sgrep: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shadower: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shady-gen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shady-graphics: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shake-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shaker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shapely-data: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shared-buffer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ she: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shelduck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Shellac-compatline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Shellac-editline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Shellac-haskeline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Shellac: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Shellac-readline: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shellish: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shell-pipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ showdown: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ shpider: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sifflet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sifflet-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ signals: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simgi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-bluetooth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-css: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-c-value: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-firewire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-form: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SimpleGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SimpleH: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simpleirc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simpleirc-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SimpleLog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-log-syslog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simplenote: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-pascal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-postgresql-orm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simpleprelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-session: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simplessh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-templates: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simple-vec3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ simseq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sindre: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sirkel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sized: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sized-vector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ skeleton: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ skype4hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ slack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ slidemews: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sloth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smallarray: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smallpt-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smallstring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smartGroup: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smartword: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Smooth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smtlib2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smt-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smtp2mta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ smtp-mail-ng: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snake-game: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-accept: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-elm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-actionlog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-css-min: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-environments: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-haxl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-hdbc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-i18n: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-lss: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-mongoDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-mongodb-minimalistic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-mysql-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-oauth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-redson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-rest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-sedna: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-tasks: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-typed-sessions: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snaplet-wordpress: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-predicates: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snappy-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-testing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snap-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sndfile-enumerators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sneathlane-haste: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SNet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ snow-white: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Snusmumrik: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SoccerFunGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SoccerFun: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sock2stream: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ socketio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ socket-sctp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ soegtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sonic-visualiser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SoOSiM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sorted: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sound-collage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ source-code-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sousit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ soxlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ soyuz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SpaceInvaders: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SpacePrivateers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spanout: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sparsebit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sparsecheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sparse: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spata: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ special-functors: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ specialize-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sphero: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sphinx-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spike: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ splaytree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ splines: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ split-record: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ splot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Spock-auth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spoonutil: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spoty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Sprig: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ spy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sqlite-simple-typed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sql-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sql-simple-mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sql-simple-pool: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sql-simple-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sql-simple-sqlite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ srcinst: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sscgi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ssh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sssp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sstable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stable-tree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stackage-curator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stack-prism: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ starrover2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stateful-mtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ statgrab: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ statistics-dirichlet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ statistics-fusion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stb-truetype: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ step-function: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stepwise: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stm-chunked-queues: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stmcontrol: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stm-firehose: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Stomp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ storable-static-array: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ storablevector-carray: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ storablevector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ storablevector-streamfusion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Strafunski-Sdf2Haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stratum-tool: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ streamed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stream-fusion: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ StrictBench: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ strict-concurrency: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stringlike: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ structured-mongoDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ structures: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ stunts: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sub-state: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ suitable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sunlight: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sunroof-compiler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sunroof-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sunroof-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ supercollider-midi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ superdoc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ supero: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ supervisor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ svg2q: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SVG2Q: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ svm-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ svndump: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ swapper: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ swearjure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ swf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ swift-lda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sws: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syb-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sylvia: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sym-plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sync: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sync-mht: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-attoparsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-example: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-example-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ SyntaxMacros: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-pretty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-printer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-trees-fork-bairyn: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ syntax-trees: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer-alsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer-dimensional: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer-llvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ synthesizer-midi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Sysmon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ system-canonicalpath: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ system-lifted: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ system-random-effect: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Tables: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tablestorage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tabloid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ taffybar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tagged-list: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tagged-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tagsoup-ht: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tagsoup-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ta: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Takusen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ takusen-oracle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tamarin-prover: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tamarin-prover-term: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tamarin-prover-theory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tamarin-prover-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ task: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tasty-expected-failure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tasty-integrate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TBC: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tbox: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tccli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tcp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tdd-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TeaHS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ teams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ telegram: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ template-default: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ template-haskell-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ template-hsml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ templatepg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tempodb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ temporal-csound: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tempus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tensor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ termbox-bindings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ term-rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ terrahs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tersmu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ test-framework-doctest: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ test-framework-quickcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ testloop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ testpack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ testpattern: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ testPkg: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ testrunner: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tetris: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tex2txt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ texrunner: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ text-json-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ textmatetags: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ text-normal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ textPlot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ text-register-machine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ text-xml-generic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ text-xml-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tfp-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Theora: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ theoremquest-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ thih: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ thimk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Thingie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ th-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ th-kinds: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ threadscope: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ thrift: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Thrift: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tianbar: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tic-tac-toe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TicTacToe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tiger: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tighttp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timberc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timecalc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ time-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ time-http: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timeout: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timeparsers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TimePiece: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timeplot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ time-recurrence: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ time-series: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ timestamp-subprocess-lines: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ time-w3c: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TinyLaunchbury: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TinyURL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Titim: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tkhs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tkyprof: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tls-extra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ todos: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ to-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ toilet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ toktok: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tokyocabinet-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ toml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Top: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ topkata: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ torch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ to-string-class: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ to-string-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Tournament: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tracker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ trajectory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ transactional-events: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ transformers-convert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ transformers-runnable: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ translate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ traypoweroff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ treeviz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tremulous-query: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TrendGraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ trhsx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ triangulation: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TrieMap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tries: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ trimpolya: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ true-name: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tsession-happstack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tsession: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tskiplist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tsp-viz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tuntap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tup-functor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tuple-gen: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tupleinstances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tuple-morph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twentefp-rosetree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twhs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twidge: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twilight-stm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twilio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twill: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twiml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twisty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitter-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitter-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitter-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ twitter-types-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ tx: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TYB: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typalyze: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typeable-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-cereal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TypeClass: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-digits: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typedquery: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-equality-check: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typehash: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ TypeIlluminator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-int: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-level-bst: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-level: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-level-sets: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typelevel-tensor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-natural: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-ord: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-ord-spine-cereal: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typeparams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typescript-docs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-settheory: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-spine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-structure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ type-sub-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ typography-geometry: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uAgda: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uberlast: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uconv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ udbus: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ udbus-model: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ udev: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ui-command: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ UMM: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unamb-custom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unbounded-delays-units: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unboxed-containers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unicode-normalization: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unicoder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uniform-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ union-map: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uniqueid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unique-logic-tf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unittyped: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ universe-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unix-process-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unlit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unordered-containers-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unpack-funcs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ unscramble: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ up: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uploadcare: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ upskirt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ureader: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ urembed: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uri-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uri-enumerator-file: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uri-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ urlcheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ urldecode: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ urldisp-happstack: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ UrlDisp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ url-generic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ URLT: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ urxml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ usb-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ usb-iteratee: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ usb-safe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ utf8-prelude: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ UTFTConverter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uuagc-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uu-tc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uvector-algorithms: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ uvector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ v4l2-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ v4l2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vacuum-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vacuum-graphviz: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vacuum: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vacuum-opengl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vacuum-ubigraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vampire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ var: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vaultaire-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vcard: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vcsgui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Vec-Boolean: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Vec-OpenGLRaw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-bytestring: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-clock: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-functorlazy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-instances-collections: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-random: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-read-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-space-opengl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vector-static: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Vec-Transform: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ verilog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vigilance: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vintage-basic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vinyl-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ virthualenv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vision: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ visual-graphrewrite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ visual-prof: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vk-aws-route53: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ VKHS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vorbiscomment: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vowpal-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ voyeur: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vtegtk3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vte: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vty-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vty-menu: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ vty-ui-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-graceful: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-handler-devel: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-handler-snap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-handler-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-hastache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-lite: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-logger-prefork: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-cache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-cache-redis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-catch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-etag: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-headers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-hmac-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-preprocessor: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-route: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-middleware-static-caching: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-session-tokyocabinet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-static-cache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wai-throttler: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ warp-dynamic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ warp-static: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ warp-tls-uid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WashNGo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ watchdog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ watcher: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ watchit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wavesurfer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ weather-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WebBits-Html: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WebBits-multiplate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ web-browser-in-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WebCont: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webcrank-dispatch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webcrank-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webdriver-snoy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ web-encodings: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webkitgtk3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webkitgtk3-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webkit-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ web-mongrel2: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Webrexp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ web-routes-quasi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ web-routes-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webserver: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ websnap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ webwire: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wedged: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ weighted-regexp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ welshy: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Wheb: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wheb-mongo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wheb-redis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wheb-strapped: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ whim: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ whitespace: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WikimediaParser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wikipedia4epub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ windowslive: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ winerror: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ winio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WL500gPControl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wlc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wobsurv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ woffex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wolf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ word24: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Wordlint: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WordNet-ghc74: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WordNet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wordsearch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wp-archivebot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wraxml: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wright: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wtk-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wumpus-basic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wumpus-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wumpus-drawing: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wumpus-microprint: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wumpus-tree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WURFL: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wxAsteroids: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ WXDiffCtrl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wxFruit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wxhnotepad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wxturtle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wyvern: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ X11-extras: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ X11-rm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ X11-xdamage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ X11-xfixes: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ x11-xinput: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ x509-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xchat-plugin: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xdot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ x-dsp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Xec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xfconf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xhaskell-library: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xhb-ewmh: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xing-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xkcd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xlsx-templater: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml2json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml2x: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-catalog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-enumerator-combinators: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ XmlHtmlWriter: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-parsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-pipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-prettify: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xml-push: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmltv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmms2-client-glib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmms2-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ XMMS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmonad-bluetilebranch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmonad-eval: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmonad-screenshot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xmpipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ XMPP: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xournal-builder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xournal-convert: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xournal-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xournal-render: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xournal-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xsact: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ XSaiga: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ xslt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ y0l0bot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Yablog: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ YACPong: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yahoo-web-search: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yajl-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yajl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yaml2owl: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ YamlReference: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yaml-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yaml-rpc-scotty: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yaml-rpc-snap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yampa-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yampa-glfw: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yampa-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yaop: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yarr: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yarr-image-io: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yavie: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ycextra: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-angular-ui: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-auth-ldap: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-auth-smbclient: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-comments: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-continuations: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-datatables: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-examples: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-goodies: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-links: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-media-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-paginate: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-pagination: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-paginator: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-pure: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-purescript: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-routes-typescript: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-rst: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-s3: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-session-redis: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-tableview: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-test-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-tls: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-vend: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yesod-worker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ YFrob: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yhccore: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yices: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-fuzzy-open: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-monokai: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-snippet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-solarized: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yi-spolsky: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yjftp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Yogurt: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Yogurt-Standalone: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yoko: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ york-lava: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yuiGrid: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yuuko: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zampolit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zasni-gerna: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zendesk-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zeno: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zeromq3-conduit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zeromq3-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zeromq-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zeroth: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ZFS: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zipedit: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ZMachine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zmcat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zmqat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zoneinfo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zoom-cache: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zoom-cache-pcm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zoom-cache-sndfile: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zoom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ztail: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ]
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
new file mode 100644
index 000000000000..f423ae84bf03
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -0,0 +1,8463 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.0 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_18";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_6";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_5";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_1";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_8";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_5";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_1";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_2";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_3";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0";
+ "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_0";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_1";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_0";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_6";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_0";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_1";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_4";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_1";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool" = doDistribute super."resource-pool_0_2_3_1";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_1";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_4";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm" = doDistribute super."stm_2_4_3";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_4";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_15";
+ "system-filepath" = doDistribute super."system-filepath_0_4_12";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_0_3";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_5";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vault" = doDistribute super."vault_0_3_0_3";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_2_2";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_5";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_1";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_6";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_0";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
new file mode 100644
index 000000000000..1f1be15ac17a
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -0,0 +1,8462 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.1 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_18";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_7";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_5";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_1";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_5";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_1";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_2";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_3";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0";
+ "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_0";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_1";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_0";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_6";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_0";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_1";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_4";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_1";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool" = doDistribute super."resource-pool_0_2_3_1";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_4";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm" = doDistribute super."stm_2_4_3";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_6";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_15";
+ "system-filepath" = doDistribute super."system-filepath_0_4_12";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_0_3";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_5";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vault" = doDistribute super."vault_0_3_0_3";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_2_2";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_5";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_1";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_6";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_0";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
new file mode 100644
index 000000000000..15c9da959f1f
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -0,0 +1,8462 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.2 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_18";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_5";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_1";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_5";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_1";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_2";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_3";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0";
+ "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_0";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_1";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_0";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_6";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_0";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_1";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_4";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_1";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool" = doDistribute super."resource-pool_0_2_3_1";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_4";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm" = doDistribute super."stm_2_4_3";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_6";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_15";
+ "system-filepath" = doDistribute super."system-filepath_0_4_12";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_0_3";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_5";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vault" = doDistribute super."vault_0_3_0_3";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_5";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_1";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_6";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_0";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
new file mode 100644
index 000000000000..10ba28eef405
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -0,0 +1,8462 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.3 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_18";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_5";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_1";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_5";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_1";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_2";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_3";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0";
+ "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_0";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_1";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_1";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_6";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_1";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_4";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_1";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool" = doDistribute super."resource-pool_0_2_3_1";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_4";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm" = doDistribute super."stm_2_4_3";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_6";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_15";
+ "system-filepath" = doDistribute super."system-filepath_0_4_12";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_0_3";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_6";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vault" = doDistribute super."vault_0_3_0_3";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_5";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_1";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_1_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_6";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
new file mode 100644
index 000000000000..9fffe27fe4ce
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -0,0 +1,8457 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.4 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_18";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_6";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_1";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_1";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_5";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_4";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_2";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_1";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_1";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_2";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_0_3";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_6";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vault" = doDistribute super."vault_0_3_0_3";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_2";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_2";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_6_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
new file mode 100644
index 000000000000..83e5cd24db0f
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -0,0 +1,8456 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.5 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers" = doDistribute super."MonadCatchIO-transformers_0_3_1_2";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_1";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async" = doDistribute super."async_2_0_1_6";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate" = doDistribute super."authenticate_1_3_2_10";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_1_1";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_6";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_3";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_5";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_0";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_4";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_1";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_6";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_1";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_4";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_2";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_3";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_1";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_6";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_3";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_0";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_2";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache" = doDistribute super."hastache_0_6_0";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_13";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_1";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_1";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_4";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-tests" = doDistribute super."network-transport-tests_0_2_1_0";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_4";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_2";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_1";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular" = doDistribute super."regular_0_3_4_3";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_1";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_3";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_5";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_1_0";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_7";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4";
+ "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_2";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_2";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmlhtml" = doDistribute super."xmlhtml_0_2_3_3";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_2";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-eventsource" = doDistribute super."yesod-eventsource_1_4_0";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_1";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-sitemap" = doDistribute super."yesod-sitemap_1_4_0";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_3";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
new file mode 100644
index 000000000000..3e8c7342f3a8
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -0,0 +1,8445 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.6 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_1";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_3";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_2";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_2_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_6";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_5";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_1";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_6";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_4";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_4";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_2";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_1";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_2";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_14";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_2";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_1";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_3";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_2";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_1_0";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_1";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4_1";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_3";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_1";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
new file mode 100644
index 000000000000..4e96d1faf3cd
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -0,0 +1,8445 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.3"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-0.7 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_8";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "Decimal" = dontDistribute super."Decimal";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = dontDistribute super."FontyFruity";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenericPretty" = dontDistribute super."GenericPretty";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_15_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_24_1";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "IfElse" = dontDistribute super."IfElse";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "Octree" = doDistribute super."Octree_0_5_4_1";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = dontDistribute super."Rasterific";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_5_2";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = dontDistribute super."Spock-digestive";
+ "Spock-worker" = dontDistribute super."Spock-worker";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = dontDistribute super."alarmclock";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = dontDistribute super."bank-holidays-england";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_8";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-conduit" = dontDistribute super."binary-conduit";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_2_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_4_0_2";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broadcast-chan" = dontDistribute super."broadcast-chan";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_6";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "circle-packing" = doDistribute super."circle-packing_0_1_0_3";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_5";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_5_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_1";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-numbers" = doDistribute super."crypto-numbers_0_2_3";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_6";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_5";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = dontDistribute super."elm-package";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_5_4";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_9";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_4";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_2";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_17_0_1";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_1";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_1_2";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_1";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_1_2_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_4_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_2_2";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_7_3";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hflags" = dontDistribute super."hflags";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_23_3";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_23_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_14";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_2";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = dontDistribute super."hoauth2";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_13";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-bibutils" = doDistribute super."hs-bibutils_5_0";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_7";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_2_2";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = dontDistribute super."json-autotype";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_1_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_4_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_2_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_3_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = dontDistribute super."lzma-conduit";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = dontDistribute super."mandrill";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_5_0_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_5_0_0";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_5_0_0";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = dontDistribute super."opaleye";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel" = doDistribute super."parallel_3_2_0_5";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_3";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_1_1";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_9";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = dontDistribute super."product-profunctors";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = dontDistribute super."quickcheck-unicode";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "raw-strings-qq" = dontDistribute super."raw-strings-qq";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_2";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = dontDistribute super."shake-language-c";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_6";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "sodium" = doDistribute super."sodium_0_11_0_2";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = dontDistribute super."stackage";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_2";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_2";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_1_0";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_1_1_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_2";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = dontDistribute super."type-list";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_1";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_4_1";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = dontDistribute super."wordpass";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_3";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_1";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_1";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
new file mode 100644
index 000000000000..9e1e237c3bfc
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -0,0 +1,8422 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.0 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_9";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_1";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_25";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_1";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_6_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex" = doDistribute super."alex_3_1_3";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_11";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-DSL" = doDistribute super."bindings-DSL_1_0_21";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_2_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "bumper" = doDistribute super."bumper_0_6_0_2";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_2";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_7";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal" = doDistribute super."cereal_0_4_1_0";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_9";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_5";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraints" = doDistribute super."constraints_0_4_1_2";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_7";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-pubkey-types" = doDistribute super."crypto-pubkey-types_0_4_2_3";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_18";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_5";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_11_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_1";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_1";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_2";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_0_4";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_2";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy" = doDistribute super."happy_1_19_4";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables" = doDistribute super."hashtables_1_2_0_1";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_1";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill" = doDistribute super."histogram-fill_0_8_3_0";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit" = doDistribute super."hit_0_6_2";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_14";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_3";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_6";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_2";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_10";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_4";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_1";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_0";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-mail-ses" = doDistribute super."mime-mail-ses_0_3_2_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_2_2";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_7";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_3";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_0_3";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_2";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_3";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_3";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_2";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_3";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setenv" = doDistribute super."setenv_0_1_1_1";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_2";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_3";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-complex" = doDistribute super."storable-complex_0_2_1";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_3";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_0_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework" = doDistribute super."test-framework_0_8_1_0";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_3";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu" = doDistribute super."text-icu_0_7_0_0";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads" = doDistribute super."threads_0_5_1_2";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-compat" = doDistribute super."unix-compat_0_4_1_3";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_1";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_3_2";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_5";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_1";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_3";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_3";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_2";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_11";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_2";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_1";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
new file mode 100644
index 000000000000..513b58ad44b6
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -0,0 +1,8402 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.1 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_9";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_25_2";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_1";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_6_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_11";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_2_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell" = doDistribute super."chell_0_4";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_5";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_3";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_6";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey" = doDistribute super."crypto-pubkey_0_2_7";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_19";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_2";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_5";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_4";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_4";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_12";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_7";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_2";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2_1";
+ "fb" = doDistribute super."fb_1_0_7";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_8";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_1";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_1";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_3";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_36";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_2";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_10";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_4";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_4";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_2";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options" = doDistribute super."options_1_2_1";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_1";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-fu" = doDistribute super."random-fu_0_2_6_1";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_3";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_7";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_5";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_4";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc" = doDistribute super."seqloc_0_6_1";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_3";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_2_2";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_8_1";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = dontDistribute super."tasty-kat";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_13";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_1";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_5_1";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_2";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_4";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_3";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_3";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_3";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
new file mode 100644
index 000000000000..4ef9bdbbf4fb
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -0,0 +1,8353 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.10 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_0";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_21";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_4";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_5";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_1";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_2";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_4";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_4";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_4";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_7_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_5";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_8";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_7";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_1";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_5";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_9_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_2";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_0";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_3_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_10";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_8_1";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form" = doDistribute super."yesod-form_1_4_4";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
new file mode 100644
index 000000000000..8bb273f88e6d
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -0,0 +1,8347 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.11 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2_1";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_3";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_0";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_2";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_21";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_4";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_13";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_6";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_2";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = doDistribute super."foreign-var_0_0_0_1";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_2";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_4";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_4";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_4";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_8";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_5";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_8";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_7";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_1";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_5";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_9_3";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_2";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_0";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_7";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_3_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_4";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_8_1";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form" = doDistribute super."yesod-form_1_4_4";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_2";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
new file mode 100644
index 000000000000..a24d72a38e6d
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -0,0 +1,8343 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.12 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2_1";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_2";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_4";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_2_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_21";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_4";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_13";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_6";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_1_0";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_2";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_10";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = doDistribute super."foreign-var_0_0_0_1";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_2";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_2";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_4";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_4";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_4";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_8_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_5";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_8";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_9_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_8";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_1";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_7";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_2";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_1";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_5";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_9_3";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_0";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_7";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_3_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_5";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_8_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_2";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
new file mode 100644
index 000000000000..13827243cb14
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -0,0 +1,8339 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.13 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2_1";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_2";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_5";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_2_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_4";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_13";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_6";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_1_0";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_2";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_10";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = doDistribute super."foreign-var_0_0_0_1";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_2";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_2";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24_1";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24_1";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_4";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_4";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_4";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_9";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_5";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_8";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_9_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_8";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_1";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_5";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_2";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_2";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_1";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_2";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_5";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_9_3";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_0";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_7";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_3_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_5";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_8_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_2";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
new file mode 100644
index 000000000000..977350175cc8
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -0,0 +1,8330 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.14 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2_1";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_2";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_2";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_5";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_2_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_5";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_13";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_6";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_1_0";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_2";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_8";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_10";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = doDistribute super."foreign-var_0_0_0_1";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_2";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heaps" = doDistribute super."heaps_0_3_2";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_12";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24_1";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24_1";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_5";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_5";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_5";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_9";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_6";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_9";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_9_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_8";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_1";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_1";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_5";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1_2";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_2";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_2";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_1";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_2";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_6";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_10";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_3";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_7";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_3_1";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_5_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_8_3";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_2";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
new file mode 100644
index 000000000000..71ed124fe328
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -0,0 +1,8315 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.15 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_1";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_4";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_18";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_2";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_5";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_3";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_17";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2_1";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_2";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_2";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_2";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_5";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_5";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_5";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_5";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_4";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_7_1";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_2_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_9";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_5";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_13";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_6";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_2";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_4";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_1_0";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8_2";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_2";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_8";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_10";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = doDistribute super."foreign-var_0_0_0_1";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_1_0";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_2";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heaps" = doDistribute super."heaps_0_3_2";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_12";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24_1";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24_1";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_39";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_5";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_5";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_5";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_9";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_6";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_1";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_2";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_9";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_9_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_10";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_2";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_8_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_13_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = doDistribute super."mutable-containers_0_2_1_2";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_1";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_5";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1_2";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_2";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_2";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_3";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_3";
+ "persistent-template" = doDistribute super."persistent-template_2_1_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3_1";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_2";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_4_1";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_4";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4_1";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_2";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16_2";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_2";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_2";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_9";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = doDistribute super."uuid-types_1_0_0";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_3";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_5";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_4";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_5";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_10_1";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_1";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_3_1";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_3";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_3";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_10";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_7";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_4";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_5_1";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_9";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3_1";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_2";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
new file mode 100644
index 000000000000..44d33682d2fe
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -0,0 +1,8395 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.2 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_2";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_2";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_9";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "HaXml" = doDistribute super."HaXml_1_25_2";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_1";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_14";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_10";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_0_3";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_2_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_0_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_5";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_7";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_19";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "direct-sqlite" = doDistribute super."direct-sqlite_2_3_14";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_2_1";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_4_1";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_2";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2_1";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filemanip" = doDistribute super."filemanip_0_3_6_2";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src" = doDistribute super."haskell-src_1_0_1_6";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_3";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_2";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_37";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_6_2";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_10";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_5";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = doDistribute super."mtlparse_0_1_2";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_2";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_0";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_1";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_3";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_7";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_5";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_5";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_0_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_3";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_0";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-kat" = doDistribute super."tasty-kat_0_0_1";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_15";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_5_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_4";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_4";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_3";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_3";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_3";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_0";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-archive" = doDistribute super."zip-archive_0_2_3_5";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
new file mode 100644
index 000000000000..4240e9a26977
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -0,0 +1,8386 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.4 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_9";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_1";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_14";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_0";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "bzlib" = doDistribute super."bzlib_0_5_0_4";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_8";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_19";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_5";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_2";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2_1";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7_1";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_0_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_3";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_37";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_2";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_2";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_2";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_7";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_12";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_3";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754" = doDistribute super."ieee754_0_7_5";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_0";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_3";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_7";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_5";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_7";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_0_1";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "tostring" = doDistribute super."tostring_0_2_1";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-encode" = doDistribute super."uri-encode_1_5_0_3";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_7";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_4";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_3";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_3";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_4";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
new file mode 100644
index 000000000000..d59d97ff233e
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -0,0 +1,8382 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.5 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_1";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_15";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "case-insensitive" = doDistribute super."case-insensitive_1_2_0_3";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_8";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_19";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_5";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_2";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2_1";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_7_1";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_0";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_1";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_3";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_3";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_3";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_7";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt" = doDistribute super."hxt_9_3_1_12";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-charproperties" = doDistribute super."hxt-charproperties_9_2_0_0";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-http" = doDistribute super."hxt-http_9_1_5";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0";
+ "hxt-relaxng" = doDistribute super."hxt-relaxng_9_1_5_3";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-unicode" = doDistribute super."hxt-unicode_9_0_2_2";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_1";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intervals" = doDistribute super."intervals_0_7_0_1";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_2";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_6_2";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_2";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_0";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_3";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_7";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_3";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_4";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_3";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_4";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_2_2";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
new file mode 100644
index 000000000000..02faeb84ae5c
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -0,0 +1,8375 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.7 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_2";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_2";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_2";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_2";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_8";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_19";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_3";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_5";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_2";
+ "fay-dom" = doDistribute super."fay-dom_0_5";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fay-text" = doDistribute super."fay-text_0_3_2_1";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8";
+ "file-location" = doDistribute super."file-location_0_4_5_3";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_1";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibgit2" = doDistribute super."hlibgit2_0_18_0_13";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_6";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_3";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_3";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_3";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_7_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_7_1";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-base" = doDistribute super."lifted-base_0_2_3_3";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_7";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_0";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_11_1";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_2";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_3";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming" = dontDistribute super."streaming";
+ "streaming-bytestring" = dontDistribute super."streaming-bytestring";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streamproc" = dontDistribute super."streamproc";
+ "streams" = doDistribute super."streams_3_2";
+ "strict-base-types" = dontDistribute super."strict-base-types";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-class" = dontDistribute super."string-class";
+ "string-combinators" = dontDistribute super."string-combinators";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-conversions" = dontDistribute super."string-conversions";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-qq" = dontDistribute super."string-qq";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "stringlike" = dontDistribute super."stringlike";
+ "strings" = dontDistribute super."strings";
+ "stringsearch" = doDistribute super."stringsearch_0_3_6_5";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-haskell" = dontDistribute super."stripe-haskell";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylish-haskell" = doDistribute super."stylish-haskell_0_5_11_1";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "suspend" = dontDistribute super."suspend";
+ "svg-tree" = dontDistribute super."svg-tree";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger" = dontDistribute super."swagger";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb" = doDistribute super."syb_0_4_4";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class" = doDistribute super."syb-with-class_0_6_1_5";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "sync" = dontDistribute super."sync";
+ "sync-mht" = dontDistribute super."sync-mht";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-argv0" = dontDistribute super."system-argv0";
+ "system-canonicalpath" = doDistribute super."system-canonicalpath_0_2_3_0";
+ "system-command" = dontDistribute super."system-command";
+ "system-fileio" = doDistribute super."system-fileio_0_3_16";
+ "system-filepath" = doDistribute super."system-filepath_0_4_13_1";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "syz" = dontDistribute super."syz";
+ "t-regex" = dontDistribute super."t-regex";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "tabular" = doDistribute super."tabular_0_2_2_5";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged" = doDistribute super."tagged_0_7_3";
+ "tagged-binary" = dontDistribute super."tagged-binary";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tar" = doDistribute super."tar_0_4_1_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty" = doDistribute super."tasty_0_10_1";
+ "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1";
+ "tasty-expected-failure" = dontDistribute super."tasty-expected-failure";
+ "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4";
+ "tasty-hspec" = dontDistribute super."tasty-hspec";
+ "tasty-html" = dontDistribute super."tasty-html";
+ "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tasty-rerun" = dontDistribute super."tasty-rerun";
+ "tasty-silver" = dontDistribute super."tasty-silver";
+ "tasty-tap" = dontDistribute super."tasty-tap";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "tellbot" = dontDistribute super."tellbot";
+ "template" = dontDistribute super."template";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "terminal-size" = doDistribute super."terminal-size_0_3_0";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-framework-th-prime" = dontDistribute super."test-framework-th-prime";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "test-simple" = dontDistribute super."test-simple";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texmath" = doDistribute super."texmath_0_8_0_1";
+ "texrunner" = dontDistribute super."texrunner";
+ "text" = doDistribute super."text_1_2_0_4";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-format-simple" = dontDistribute super."text-format-simple";
+ "text-icu-translit" = dontDistribute super."text-icu-translit";
+ "text-json-qq" = dontDistribute super."text-json-qq";
+ "text-latin1" = dontDistribute super."text-latin1";
+ "text-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-manipulate" = dontDistribute super."text-manipulate";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show" = dontDistribute super."text-show";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = dontDistribute super."text-zipper";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-context" = dontDistribute super."th-context";
+ "th-desugar" = doDistribute super."th-desugar_1_4_2_1";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-lift" = doDistribute super."th-lift_0_7";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-orphans" = doDistribute super."th-orphans_0_8_3";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_2";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "these" = dontDistribute super."these";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "through-text" = dontDistribute super."through-text";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "thumbnail-plus" = dontDistribute super."thumbnail-plus";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-locale-compat" = dontDistribute super."time-locale-compat";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-units" = dontDistribute super."time-units";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeit" = dontDistribute super."timeit";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timerep" = dontDistribute super."timerep";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson" = doDistribute super."timezone-olson_0_1_6";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timezone-series" = doDistribute super."timezone-series_0_1_4";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = dontDistribute super."tinylog";
+ "tinytemplate" = dontDistribute super."tinytemplate";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_2_16";
+ "tls-debug" = doDistribute super."tls-debug_0_3_4";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "token-bucket" = dontDistribute super."token-bucket";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "torrent" = dontDistribute super."torrent";
+ "total" = dontDistribute super."total";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracker" = dontDistribute super."tracker";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-base" = doDistribute super."transformers-base_0_4_3";
+ "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-lift" = dontDistribute super."transformers-lift";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "tries" = dontDistribute super."tries";
+ "trifecta" = dontDistribute super."trifecta";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = dontDistribute super."true-name";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttrie" = dontDistribute super."ttrie";
+ "tttool" = dontDistribute super."tttool";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tuple-th" = dontDistribute super."tuple-th";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
+ "turing-music" = dontDistribute super."turing-music";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle" = dontDistribute super."turtle";
+ "tweak" = dontDistribute super."tweak";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = dontDistribute super."twitter-conduit";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "twitter-feed" = dontDistribute super."twitter-feed";
+ "twitter-types" = dontDistribute super."twitter-types";
+ "twitter-types-lens" = dontDistribute super."twitter-types-lens";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-aligned" = dontDistribute super."type-aligned";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-eq" = doDistribute super."type-eq_0_4_2";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-numbers" = dontDistribute super."type-level-numbers";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_0_0_1";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "types-compat" = dontDistribute super."types-compat";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "tz" = dontDistribute super."tz";
+ "tzdata" = dontDistribute super."tzdata";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uglymemo" = dontDistribute super."uglymemo";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbound-generics" = dontDistribute super."unbound-generics";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unexceptionalio" = dontDistribute super."unexceptionalio";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "unification-fd" = dontDistribute super."unification-fd";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe" = dontDistribute super."universe";
+ "universe-base" = dontDistribute super."universe-base";
+ "universe-instances-base" = dontDistribute super."universe-instances-base";
+ "universe-instances-extended" = dontDistribute super."universe-instances-extended";
+ "universe-instances-trans" = dontDistribute super."universe-instances-trans";
+ "universe-reverse-instances" = dontDistribute super."universe-reverse-instances";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-bytestring" = dontDistribute super."unix-bytestring";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unix-time" = doDistribute super."unix-time_0_3_4";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = dontDistribute super."uri-bytestring";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "uri-templater" = dontDistribute super."uri-templater";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urlpath" = dontDistribute super."urlpath";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "userid" = dontDistribute super."userid";
+ "users" = dontDistribute super."users";
+ "users-persistent" = dontDistribute super."users-persistent";
+ "users-postgresql-simple" = dontDistribute super."users-postgresql-simple";
+ "users-test" = dontDistribute super."users-test";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "utf8-string" = doDistribute super."utf8-string_0_3_8";
+ "utility-ht" = dontDistribute super."utility-ht";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-interleaved" = dontDistribute super."uu-interleaved";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-parsinglib" = dontDistribute super."uu-parsinglib";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid" = doDistribute super."uuid_1_3_8";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uuid-types" = dontDistribute super."uuid-types";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validate-input" = dontDistribute super."validate-input";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validation" = dontDistribute super."validation";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector" = doDistribute super."vector_0_10_12_2";
+ "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-buffer" = dontDistribute super."vector-buffer";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-fftw" = dontDistribute super."vector-fftw";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances" = doDistribute super."vector-instances_3_3_0_1";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-space" = doDistribute super."vector-space_0_8_7";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verilog" = dontDistribute super."verilog";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl" = dontDistribute super."vinyl";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "void" = doDistribute super."void_0_7";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = dontDistribute super."vty";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "waddle" = dontDistribute super."waddle";
+ "wai" = doDistribute super."wai_3_0_2_2";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6";
+ "wai-cors" = dontDistribute super."wai-cors";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-extra" = doDistribute super."wai-extra_3_0_4_1";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = dontDistribute super."wai-handler-launch";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger" = doDistribute super."wai-logger_2_2_3";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-consul" = dontDistribute super."wai-middleware-consul";
+ "wai-middleware-crowd" = dontDistribute super."wai-middleware-crowd";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-prometheus" = dontDistribute super."wai-middleware-prometheus";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static" = doDistribute super."wai-middleware-static_0_6_0_1";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-throttle" = dontDistribute super."wai-middleware-throttle";
+ "wai-predicates" = dontDistribute super."wai-predicates";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-route" = dontDistribute super."wai-route";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-routes" = dontDistribute super."wai-routes";
+ "wai-routing" = dontDistribute super."wai-routing";
+ "wai-session" = dontDistribute super."wai-session";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_4";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "waitra" = dontDistribute super."waitra";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_0_8";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls" = doDistribute super."warp-tls_3_0_1_4";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-plugins" = dontDistribute super."web-plugins";
+ "web-routes" = dontDistribute super."web-routes";
+ "web-routes-boomerang" = dontDistribute super."web-routes-boomerang";
+ "web-routes-happstack" = dontDistribute super."web-routes-happstack";
+ "web-routes-hsp" = dontDistribute super."web-routes-hsp";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-th" = dontDistribute super."web-routes-th";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "web-routes-wai" = dontDistribute super."web-routes-wai";
+ "web-routing" = dontDistribute super."web-routing";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver" = doDistribute super."webdriver_0_6_0_4";
+ "webdriver-angular" = dontDistribute super."webdriver-angular";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webpage" = dontDistribute super."webpage";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "websockets" = doDistribute super."websockets_0_9_2_2";
+ "websockets-snap" = dontDistribute super."websockets-snap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "wiring" = dontDistribute super."wiring";
+ "witherable" = dontDistribute super."witherable";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wizards" = doDistribute super."wizards_1_0_1";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint" = doDistribute super."wl-pprint_1_1";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wl-pprint-extras" = doDistribute super."wl-pprint-extras_3_5_0_4";
+ "wl-pprint-text" = doDistribute super."wl-pprint-text_1_1_0_3";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-trie" = dontDistribute super."word-trie";
+ "word24" = dontDistribute super."word24";
+ "word8" = doDistribute super."word8_0_1_1";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "wordpass" = doDistribute super."wordpass_1_0_0_2";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wrap" = dontDistribute super."wrap";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq" = dontDistribute super."wreq";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509" = doDistribute super."x509_1_5_0_1";
+ "x509-store" = doDistribute super."x509-store_1_5_0";
+ "x509-system" = doDistribute super."x509-system_1_5_0";
+ "x509-util" = dontDistribute super."x509-util";
+ "x509-validation" = doDistribute super."x509-validation_1_5_1";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdg-basedir" = dontDistribute super."xdg-basedir";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xformat" = dontDistribute super."xformat";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsior" = dontDistribute super."xlsior";
+ "xlsx" = dontDistribute super."xlsx";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml" = doDistribute super."xml_1_3_13";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_2_3_1";
+ "xml-conduit-parse" = dontDistribute super."xml-conduit-parse";
+ "xml-conduit-writer" = dontDistribute super."xml-conduit-writer";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-hamlet" = doDistribute super."xml-hamlet_0_4_0_9";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-lens" = dontDistribute super."xml-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-to-json" = dontDistribute super."xml-to-json";
+ "xml-to-json-fast" = dontDistribute super."xml-to-json-fast";
+ "xml-types" = doDistribute super."xml-types_0_3_4";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad" = dontDistribute super."xmonad";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_5";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yackage" = doDistribute super."yackage_0_7_0_6";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml" = doDistribute super."yaml_0_8_10_1";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light" = dontDistribute super."yaml-light";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yes-precure5-command" = dontDistribute super."yes-precure5-command";
+ "yesod" = doDistribute super."yesod_1_4_1_4";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth" = doDistribute super."yesod-auth_1_4_1_3";
+ "yesod-auth-account" = dontDistribute super."yesod-auth-account";
+ "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
+ "yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_1_2";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bin" = doDistribute super."yesod-bin_1_4_3_5";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-core" = doDistribute super."yesod-core_1_4_7_2";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-default" = dontDistribute super."yesod-default";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-fay" = doDistribute super."yesod-fay_0_7_1";
+ "yesod-form" = doDistribute super."yesod-form_1_4_3_1";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
+ "yesod-gitrev" = dontDistribute super."yesod-gitrev";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-mangopay" = dontDistribute super."yesod-mangopay";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_2";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static" = doDistribute super."yesod-static_1_4_0_4";
+ "yesod-static-angular" = dontDistribute super."yesod-static-angular";
+ "yesod-table" = dontDistribute super."yesod-table";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test" = doDistribute super."yesod-test_1_4_3";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-text-markdown" = doDistribute super."yesod-text-markdown_0_1_7";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets" = doDistribute super."yesod-websockets_0_2_1_1";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi" = dontDistribute super."yi";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-language" = dontDistribute super."yi-language";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-rope" = dontDistribute super."yi-rope";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zero" = dontDistribute super."zero";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zlib-lens" = doDistribute super."zlib-lens_0_1_1_1";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
new file mode 100644
index 000000000000..453fa00c0532
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -0,0 +1,8368 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: assert super.ghc.name == "ghc-7.8.4"; {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # lts-1.8 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = dontDistribute super."Agda";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "BlastHTTP" = doDistribute super."BlastHTTP_1_0_1";
+ "Blobs" = dontDistribute super."Blobs";
+ "BlogLiterately" = doDistribute super."BlogLiterately_0_7_1_7";
+ "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_1_4_3";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "Cabal-ide-backend" = dontDistribute super."Cabal-ide-backend";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "Chart" = doDistribute super."Chart_1_3_3";
+ "Chart-cairo" = dontDistribute super."Chart-cairo";
+ "Chart-diagrams" = doDistribute super."Chart-diagrams_1_3_3";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_11";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "ClustalParser" = dontDistribute super."ClustalParser";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFile" = dontDistribute super."ConfigFile";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DAV" = doDistribute super."DAV_1_0_3";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DRBG" = dontDistribute super."DRBG";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "Diff" = doDistribute super."Diff_0_3_0";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = dontDistribute super."Earley";
+ "Ebnf2ps" = dontDistribute super."Ebnf2ps";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EntrezHTTP" = dontDistribute super."EntrezHTTP";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FenwickTree" = doDistribute super."FenwickTree_0_1_2";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FindBin" = dontDistribute super."FindBin";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "FontyFruity" = doDistribute super."FontyFruity_0_4_1";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "Frames" = dontDistribute super."Frames";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b" = dontDistribute super."GLFW-b";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_1_4_0_2";
+ "GLUT" = doDistribute super."GLUT_2_5_1_1";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe" = dontDistribute super."GPipe";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-GLFW" = dontDistribute super."GPipe-GLFW";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "Genbank" = dontDistribute super."Genbank";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "GraphSCC" = dontDistribute super."GraphSCC";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "H" = dontDistribute super."H";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC" = dontDistribute super."HDBC";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql" = dontDistribute super."HDBC-postgresql";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HList" = dontDistribute super."HList";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPDF" = dontDistribute super."HPDF";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplate" = doDistribute super."HStringTemplate_0_7_3";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTF" = doDistribute super."HTF_0_12_2_3";
+ "HTTP" = doDistribute super."HTTP_4000_2_19";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_0_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "HandsomeSoup" = doDistribute super."HandsomeSoup_0_3_5";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellNet" = dontDistribute super."HaskellNet";
+ "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL" = dontDistribute super."HsOpenSSL";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsSyck" = dontDistribute super."HsSyck";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IPv6Addr" = dontDistribute super."IPv6Addr";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "IntervalMap" = dontDistribute super."IntervalMap";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
+ "JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = dontDistribute super."LibZip";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "List" = dontDistribute super."List";
+ "ListLike" = dontDistribute super."ListLike";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MFlow" = dontDistribute super."MFlow";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandom" = doDistribute super."MonadRandom_0_3_0_1";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz" = doDistribute super."MusicBrainz_0_2_3";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "Network-NineP" = dontDistribute super."Network-NineP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "NineP" = dontDistribute super."NineP";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "ObjectName" = dontDistribute super."ObjectName";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_2_9_2_0";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_1_5_0_1";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PSQueue" = dontDistribute super."PSQueue";
+ "PTQ" = dontDistribute super."PTQ";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_7_6";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "RSA" = dontDistribute super."RSA";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Rasterific" = doDistribute super."Rasterific_0_4_2";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "RefSerialize" = dontDistribute super."RefSerialize";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "Rlang-QQ" = dontDistribute super."Rlang-QQ";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA" = doDistribute super."SHA_1_6_4_1";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "STMonadTrans" = dontDistribute super."STMonadTrans";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = doDistribute super."SVGFonts_1_4_0_3";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "SafeSemaphore" = dontDistribute super."SafeSemaphore";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "SegmentTree" = dontDistribute super."SegmentTree";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock" = doDistribute super."Spock_0_7_7_0";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar" = dontDistribute super."StateVar";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "TCache" = dontDistribute super."TCache";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "Taxonomy" = dontDistribute super."Taxonomy";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils" = dontDistribute super."Unixutils";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "ViennaRNAParser" = dontDistribute super."ViennaRNAParser";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = dontDistribute super."Win32";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-extras" = dontDistribute super."Win32-extras";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-notify" = dontDistribute super."Win32-notify";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "Workflow" = dontDistribute super."Workflow";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xauth" = dontDistribute super."Xauth";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_9_6";
+ "Yampa-core" = dontDistribute super."Yampa-core";
+ "Yocto" = dontDistribute super."Yocto";
+ "Yogurt" = dontDistribute super."Yogurt";
+ "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone";
+ "ZEBEDDE" = dontDistribute super."ZEBEDDE";
+ "ZFS" = dontDistribute super."ZFS";
+ "ZMachine" = dontDistribute super."ZMachine";
+ "ZipFold" = dontDistribute super."ZipFold";
+ "ZipperAG" = dontDistribute super."ZipperAG";
+ "Zora" = dontDistribute super."Zora";
+ "Zwaluw" = dontDistribute super."Zwaluw";
+ "a50" = dontDistribute super."a50";
+ "abacate" = dontDistribute super."abacate";
+ "abc-puzzle" = dontDistribute super."abc-puzzle";
+ "abcBridge" = dontDistribute super."abcBridge";
+ "abcnotation" = dontDistribute super."abcnotation";
+ "abeson" = dontDistribute super."abeson";
+ "abstract-deque-tests" = dontDistribute super."abstract-deque-tests";
+ "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate";
+ "abt" = dontDistribute super."abt";
+ "ac-machine" = dontDistribute super."ac-machine";
+ "ac-machine-conduit" = dontDistribute super."ac-machine-conduit";
+ "accelerate" = doDistribute super."accelerate_0_15_0_0";
+ "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic";
+ "accelerate-cublas" = dontDistribute super."accelerate-cublas";
+ "accelerate-cuda" = dontDistribute super."accelerate-cuda";
+ "accelerate-cufft" = dontDistribute super."accelerate-cufft";
+ "accelerate-examples" = dontDistribute super."accelerate-examples";
+ "accelerate-fft" = dontDistribute super."accelerate-fft";
+ "accelerate-fftw" = dontDistribute super."accelerate-fftw";
+ "accelerate-fourier" = dontDistribute super."accelerate-fourier";
+ "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
+ "accelerate-io" = dontDistribute super."accelerate-io";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state" = dontDistribute super."acid-state";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "active" = doDistribute super."active_0_1_0_17";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "ad" = doDistribute super."ad_4_2_1_1";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adjunctions" = doDistribute super."adjunctions_4_2";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_8_0_2";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-better-errors" = dontDistribute super."aeson-better-errors";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-casing" = dontDistribute super."aeson-casing";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-qq" = doDistribute super."aeson-qq_0_7_4";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "agda-server" = dontDistribute super."agda-server";
+ "agentx" = dontDistribute super."agentx";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = dontDistribute super."airship";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alarmclock" = doDistribute super."alarmclock_0_2_0_5";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = dontDistribute super."amazonka";
+ "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling";
+ "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation";
+ "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront";
+ "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm";
+ "amazonka-cloudsearch" = dontDistribute super."amazonka-cloudsearch";
+ "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains";
+ "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail";
+ "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch";
+ "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs";
+ "amazonka-codecommit" = dontDistribute super."amazonka-codecommit";
+ "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy";
+ "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline";
+ "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity";
+ "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync";
+ "amazonka-config" = dontDistribute super."amazonka-config";
+ "amazonka-core" = dontDistribute super."amazonka-core";
+ "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline";
+ "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm";
+ "amazonka-directconnect" = dontDistribute super."amazonka-directconnect";
+ "amazonka-ds" = dontDistribute super."amazonka-ds";
+ "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb";
+ "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams";
+ "amazonka-ec2" = dontDistribute super."amazonka-ec2";
+ "amazonka-ecs" = dontDistribute super."amazonka-ecs";
+ "amazonka-efs" = dontDistribute super."amazonka-efs";
+ "amazonka-elasticache" = dontDistribute super."amazonka-elasticache";
+ "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk";
+ "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder";
+ "amazonka-elb" = dontDistribute super."amazonka-elb";
+ "amazonka-emr" = dontDistribute super."amazonka-emr";
+ "amazonka-glacier" = dontDistribute super."amazonka-glacier";
+ "amazonka-iam" = dontDistribute super."amazonka-iam";
+ "amazonka-importexport" = dontDistribute super."amazonka-importexport";
+ "amazonka-kinesis" = dontDistribute super."amazonka-kinesis";
+ "amazonka-kms" = dontDistribute super."amazonka-kms";
+ "amazonka-lambda" = dontDistribute super."amazonka-lambda";
+ "amazonka-ml" = dontDistribute super."amazonka-ml";
+ "amazonka-opsworks" = dontDistribute super."amazonka-opsworks";
+ "amazonka-rds" = dontDistribute super."amazonka-rds";
+ "amazonka-redshift" = dontDistribute super."amazonka-redshift";
+ "amazonka-route53" = dontDistribute super."amazonka-route53";
+ "amazonka-route53-domains" = dontDistribute super."amazonka-route53-domains";
+ "amazonka-s3" = dontDistribute super."amazonka-s3";
+ "amazonka-sdb" = dontDistribute super."amazonka-sdb";
+ "amazonka-ses" = dontDistribute super."amazonka-ses";
+ "amazonka-sns" = dontDistribute super."amazonka-sns";
+ "amazonka-sqs" = dontDistribute super."amazonka-sqs";
+ "amazonka-ssm" = dontDistribute super."amazonka-ssm";
+ "amazonka-storagegateway" = dontDistribute super."amazonka-storagegateway";
+ "amazonka-sts" = dontDistribute super."amazonka-sts";
+ "amazonka-support" = dontDistribute super."amazonka-support";
+ "amazonka-swf" = dontDistribute super."amazonka-swf";
+ "amazonka-test" = dontDistribute super."amazonka-test";
+ "amazonka-workspaces" = dontDistribute super."amazonka-workspaces";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp" = doDistribute super."amqp_0_10_1";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "angel" = dontDistribute super."angel";
+ "animalcase" = dontDistribute super."animalcase";
+ "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint";
+ "anonymous-sums" = dontDistribute super."anonymous-sums";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1";
+ "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = dontDistribute super."apiary";
+ "apiary-authenticate" = dontDistribute super."apiary-authenticate";
+ "apiary-clientsession" = dontDistribute super."apiary-clientsession";
+ "apiary-cookie" = dontDistribute super."apiary-cookie";
+ "apiary-eventsource" = dontDistribute super."apiary-eventsource";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-logger" = dontDistribute super."apiary-logger";
+ "apiary-memcached" = dontDistribute super."apiary-memcached";
+ "apiary-mongoDB" = dontDistribute super."apiary-mongoDB";
+ "apiary-persistent" = dontDistribute super."apiary-persistent";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apiary-session" = dontDistribute super."apiary-session";
+ "apiary-websockets" = dontDistribute super."apiary-websockets";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "app-settings" = dontDistribute super."app-settings";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate" = doDistribute super."approximate_0_2_1_1";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "arbtt" = doDistribute super."arbtt_0_8_1_4";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arff" = dontDistribute super."arff";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = doDistribute super."arithmoi_0_4_1_1";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrow-list" = doDistribute super."arrow-list_0_6_1_5";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-progress" = dontDistribute super."ascii-progress";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = dontDistribute super."asciidiagram";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = doDistribute super."asn1-data_0_7_1";
+ "asn1-encoding" = doDistribute super."asn1-encoding_0_9_0";
+ "asn1-parse" = doDistribute super."asn1-parse_0_9_0";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = dontDistribute super."atomic-primops";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "attempt" = dontDistribute super."attempt";
+ "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-enumerator" = doDistribute super."attoparsec-enumerator_0_3_3";
+ "attoparsec-expr" = doDistribute super."attoparsec-expr_0_1_1_1";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attoparsec-trans" = dontDistribute super."attoparsec-trans";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authenticate-oauth" = dontDistribute super."authenticate-oauth";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "auto" = dontDistribute super."auto";
+ "auto-update" = doDistribute super."auto-update_0_1_2_1";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "average" = dontDistribute super."average";
+ "avers" = dontDistribute super."avers";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "aws" = doDistribute super."aws_0_11_2";
+ "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer";
+ "aws-configuration-tools" = dontDistribute super."aws-configuration-tools";
+ "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit";
+ "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams";
+ "aws-ec2" = dontDistribute super."aws-ec2";
+ "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder";
+ "aws-general" = dontDistribute super."aws-general";
+ "aws-kinesis" = dontDistribute super."aws-kinesis";
+ "aws-kinesis-client" = dontDistribute super."aws-kinesis-client";
+ "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard";
+ "aws-lambda" = dontDistribute super."aws-lambda";
+ "aws-performance-tests" = dontDistribute super."aws-performance-tests";
+ "aws-route53" = dontDistribute super."aws-route53";
+ "aws-sdk" = dontDistribute super."aws-sdk";
+ "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter";
+ "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered";
+ "aws-sign4" = dontDistribute super."aws-sign4";
+ "aws-sns" = dontDistribute super."aws-sns";
+ "azure-acs" = dontDistribute super."azure-acs";
+ "azure-service-api" = dontDistribute super."azure-service-api";
+ "azure-servicebus" = dontDistribute super."azure-servicebus";
+ "azurify" = dontDistribute super."azurify";
+ "b-tree" = dontDistribute super."b-tree";
+ "b9" = dontDistribute super."b9";
+ "babylon" = dontDistribute super."babylon";
+ "backdropper" = dontDistribute super."backdropper";
+ "backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
+ "backward-state" = dontDistribute super."backward-state";
+ "bacteria" = dontDistribute super."bacteria";
+ "bag" = dontDistribute super."bag";
+ "bake" = doDistribute super."bake_0_2";
+ "bamboo" = dontDistribute super."bamboo";
+ "bamboo-launcher" = dontDistribute super."bamboo-launcher";
+ "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight";
+ "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo";
+ "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint";
+ "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
+ "bamse" = dontDistribute super."bamse";
+ "bamstats" = dontDistribute super."bamstats";
+ "bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = doDistribute super."barecheck_0_2_0_6";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier" = dontDistribute super."barrier";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-compat" = doDistribute super."base-compat_0_5_0";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-noprelude" = dontDistribute super."base-noprelude";
+ "base-orphans" = dontDistribute super."base-orphans";
+ "base-prelude" = doDistribute super."base-prelude_0_1_16";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base32string" = dontDistribute super."base32string";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base58string" = dontDistribute super."base58string";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base64-string" = dontDistribute super."base64-string";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_3_11";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bcrypt" = dontDistribute super."bcrypt";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "benchpress" = dontDistribute super."benchpress";
+ "bencode" = dontDistribute super."bencode";
+ "bencoding" = dontDistribute super."bencoding";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bifunctors" = doDistribute super."bifunctors_4_2";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimap" = dontDistribute super."bimap";
+ "bimap-server" = dontDistribute super."bimap-server";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-list" = doDistribute super."binary-list_1_0_1_0";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-orphans" = dontDistribute super."binary-orphans";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-search" = dontDistribute super."binary-search";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binary-tagged" = dontDistribute super."binary-tagged";
+ "binary-typed" = dontDistribute super."binary-typed";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-GLFW" = dontDistribute super."bindings-GLFW";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = dontDistribute super."bindings-libzip";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-posix" = dontDistribute super."bindings-posix";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bio" = dontDistribute super."bio";
+ "biophd" = doDistribute super."biophd_0_0_5";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-api" = dontDistribute super."bitcoin-api";
+ "bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
+ "bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitcoin-script" = dontDistribute super."bitcoin-script";
+ "bitcoin-tx" = dontDistribute super."bitcoin-tx";
+ "bitcoin-types" = dontDistribute super."bitcoin-types";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitwise" = dontDistribute super."bitwise";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blank-canvas" = dontDistribute super."blank-canvas";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
+ "blaze-builder" = doDistribute super."blaze-builder_0_3_3_4";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-builder-enumerator" = doDistribute super."blaze-builder-enumerator_0_2_0_6";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html" = doDistribute super."blaze-html_0_7_1_0";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-markup" = doDistribute super."blaze-markup_0_6_3_0";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-svg" = doDistribute super."blaze-svg_0_3_4";
+ "blaze-textual" = doDistribute super."blaze-textual_0_2_0_9";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = doDistribute super."bloodhound_0_5_0_1";
+ "bloomfilter" = dontDistribute super."bloomfilter";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boomerang" = dontDistribute super."boomerang";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "both" = dontDistribute super."both";
+ "botpp" = dontDistribute super."botpp";
+ "bound" = doDistribute super."bound_1_0_4";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = dontDistribute super."bower-json";
+ "boxes" = dontDistribute super."boxes";
+ "bpann" = dontDistribute super."bpann";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brick" = dontDistribute super."brick";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-lens" = dontDistribute super."bson-lens";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "btrfs" = dontDistribute super."btrfs";
+ "buffer-builder" = dontDistribute super."buffer-builder";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "bustle" = dontDistribute super."bustle";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytes" = doDistribute super."bytes_0_14_1_3";
+ "byteset" = dontDistribute super."byteset";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-builder" = doDistribute super."bytestring-builder_0_10_4_1_1";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-conversion" = dontDistribute super."bytestring-conversion";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-handle" = dontDistribute super."bytestring-handle";
+ "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-progress" = doDistribute super."bytestring-progress_1_0_3";
+ "bytestring-read" = dontDistribute super."bytestring-read";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-trie" = doDistribute super."bytestring-trie_0_2_4";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_20_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = dontDistribute super."cabal-debian";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-file-th" = dontDistribute super."cabal-file-th";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-helper" = dontDistribute super."cabal-helper";
+ "cabal-install" = doDistribute super."cabal-install_1_18_0_8";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-rpm" = dontDistribute super."cabal-rpm";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-sort" = dontDistribute super."cabal-sort";
+ "cabal-src" = doDistribute super."cabal-src_0_2_5";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo" = doDistribute super."cairo_0_13_0_6";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "calculator" = dontDistribute super."calculator";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = dontDistribute super."carray";
+ "cartel" = dontDistribute super."cartel";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cased" = dontDistribute super."cased";
+ "cases" = doDistribute super."cases_0_1_2";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava" = doDistribute super."cassava_0_4_2_1";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "cayley-client" = dontDistribute super."cayley-client";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "cereal-vector" = dontDistribute super."cereal-vector";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = dontDistribute super."cgi";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charset" = doDistribute super."charset_0_3_7";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "charsetdetect-ae" = dontDistribute super."charsetdetect-ae";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate" = dontDistribute super."cheapskate";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "checkers" = doDistribute super."checkers_0_4_1";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunked-data" = doDistribute super."chunked-data_0_1_0_1";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-aes" = doDistribute super."cipher-aes_0_2_10";
+ "cipher-aes128" = dontDistribute super."cipher-aes128";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "circ" = dontDistribute super."circ";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clanki" = dontDistribute super."clanki";
+ "clash" = dontDistribute super."clash";
+ "clash-ghc" = dontDistribute super."clash-ghc";
+ "clash-lib" = dontDistribute super."clash-lib";
+ "clash-prelude" = dontDistribute super."clash-prelude";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "clash-systemverilog" = dontDistribute super."clash-systemverilog";
+ "clash-verilog" = dontDistribute super."clash-verilog";
+ "clash-vhdl" = dontDistribute super."clash-vhdl";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "classy-prelude" = doDistribute super."classy-prelude_0_10_4";
+ "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_10_4";
+ "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_10_4";
+ "clay" = dontDistribute super."clay";
+ "clckwrks" = dontDistribute super."clckwrks";
+ "clckwrks-cli" = dontDistribute super."clckwrks-cli";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media";
+ "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page";
+ "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "clock" = doDistribute super."clock_0_4_1_3";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "cluss" = dontDistribute super."cluss";
+ "clustering" = dontDistribute super."clustering";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = dontDistribute super."cmark";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs" = doDistribute super."cmdargs_0_10_12";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codex" = dontDistribute super."codex";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "commutative" = dontDistribute super."commutative";
+ "comonad" = doDistribute super."comonad_4_2_2";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata" = doDistribute super."compdata_0_9";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "composition" = doDistribute super."composition_1_0_1_0";
+ "composition-extra" = dontDistribute super."composition-extra";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit" = doDistribute super."conduit_1_2_3_1";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-combinators" = doDistribute super."conduit-combinators_0_3_0_6";
+ "conduit-connection" = dontDistribute super."conduit-connection";
+ "conduit-extra" = doDistribute super."conduit-extra_1_1_6_2";
+ "conduit-iconv" = dontDistribute super."conduit-iconv";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-parse" = dontDistribute super."conduit-parse";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conf" = dontDistribute super."conf";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "configifier" = dontDistribute super."configifier";
+ "configuration" = dontDistribute super."configuration";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection" = doDistribute super."connection_0_2_4";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consul-haskell" = dontDistribute super."consul-haskell";
+ "consumers" = dontDistribute super."consumers";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "contravariant" = doDistribute super."contravariant_1_2_0_1";
+ "control-bool" = dontDistribute super."control-bool";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-free" = doDistribute super."control-monad-free_0_5_3";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convertible" = doDistribute super."convertible_1_1_0_0";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "cookie" = doDistribute super."cookie_0_4_1_4";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "country-codes" = dontDistribute super."country-codes";
+ "courier" = doDistribute super."courier_0_1_0_15";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_18_8";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cql" = dontDistribute super."cql";
+ "cql-io" = dontDistribute super."cql-io";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "crackNum" = dontDistribute super."crackNum";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion" = doDistribute super."criterion_1_0_2_0";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = dontDistribute super."cron";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-api-tests" = dontDistribute super."crypto-api-tests";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random" = doDistribute super."crypto-random_0_0_8";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptol" = dontDistribute super."cryptol";
+ "cryptonite" = dontDistribute super."cryptonite";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "css-syntax" = dontDistribute super."css-syntax";
+ "csv-conduit" = doDistribute super."csv-conduit_0_6_3";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "ctrie" = dontDistribute super."ctrie";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cubicspline" = dontDistribute super."cubicspline";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = dontDistribute super."darcs";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-hash" = dontDistribute super."data-hash";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-ordlist" = dontDistribute super."data-ordlist";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify" = doDistribute super."data-reify_0_6";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "datadog" = dontDistribute super."datadog";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = dontDistribute super."dbmigrations";
+ "dbus" = dontDistribute super."dbus";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian" = dontDistribute super."debian";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "decepticons" = dontDistribute super."decepticons";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = dontDistribute super."dejafu";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = dontDistribute super."dependent-map";
+ "dependent-sum" = dontDistribute super."dependent-sum";
+ "dependent-sum-template" = dontDistribute super."dependent-sum-template";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive" = doDistribute super."derive_2_5_20";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "descriptive" = dontDistribute super."descriptive";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams" = doDistribute super."diagrams_1_2";
+ "diagrams-builder" = doDistribute super."diagrams-builder_0_6_0_3";
+ "diagrams-cairo" = doDistribute super."diagrams-cairo_1_2_0_6";
+ "diagrams-canvas" = dontDistribute super."diagrams-canvas";
+ "diagrams-contrib" = doDistribute super."diagrams-contrib_1_1_2_5";
+ "diagrams-core" = doDistribute super."diagrams-core_1_2_0_5";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-gtk" = dontDistribute super."diagrams-gtk";
+ "diagrams-haddock" = doDistribute super."diagrams-haddock_0_2_2_13";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-html5" = dontDistribute super."diagrams-html5";
+ "diagrams-lib" = doDistribute super."diagrams-lib_1_2_0_8";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-rasterific" = dontDistribute super."diagrams-rasterific";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-solve" = dontDistribute super."diagrams-solve";
+ "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "dice" = dontDistribute super."dice";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diff3" = dontDistribute super."diff3";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-bootstrap" = dontDistribute super."digestive-bootstrap";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors" = doDistribute super."digestive-functors_0_7_1_4";
+ "digestive-functors-aeson" = dontDistribute super."digestive-functors-aeson";
+ "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-lucid" = dontDistribute super."digestive-functors-lucid";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "digits" = dontDistribute super."digits";
+ "dimensional" = doDistribute super."dimensional_0_13_0_1";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "disk-free-space" = dontDistribute super."disk-free-space";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-process" = doDistribute super."distributed-process_0_5_3";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = doDistribute super."distributed-process-simplelocalnet_0_2_2_0";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distributed-static" = doDistribute super."distributed-static_0_3_1_0";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "diversity" = dontDistribute super."diversity";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dlist" = doDistribute super."dlist_0_7_1";
+ "dns" = dontDistribute super."dns";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "dockerfile" = dontDistribute super."dockerfile";
+ "docopt" = dontDistribute super."docopt";
+ "doctest" = doDistribute super."doctest_0_9_12";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = dontDistribute super."dotenv";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "drawille" = dontDistribute super."drawille";
+ "drifter" = dontDistribute super."drifter";
+ "drifter-postgresql" = dontDistribute super."drifter-postgresql";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dual-tree" = doDistribute super."dual-tree_0_2_0_5";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynamic-state" = dontDistribute super."dynamic-state";
+ "dynobud" = dontDistribute super."dynobud";
+ "dyre" = dontDistribute super."dyre";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-file" = doDistribute super."easy-file_0_2_0";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "ede" = dontDistribute super."ede";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edit-distance" = dontDistribute super."edit-distance";
+ "edit-distance-vector" = dontDistribute super."edit-distance-vector";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editor-open" = dontDistribute super."editor-open";
+ "effect-handlers" = dontDistribute super."effect-handlers";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_3_3_2";
+ "either-unwrap" = dontDistribute super."either-unwrap";
+ "eithers" = dontDistribute super."eithers";
+ "ekg" = dontDistribute super."ekg";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-core" = dontDistribute super."ekg-core";
+ "ekg-json" = dontDistribute super."ekg-json";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elm-bridge" = dontDistribute super."elm-bridge";
+ "elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-get" = dontDistribute super."elm-get";
+ "elm-init" = dontDistribute super."elm-init";
+ "elm-make" = dontDistribute super."elm-make";
+ "elm-package" = doDistribute super."elm-package_0_2_2";
+ "elm-reactor" = dontDistribute super."elm-reactor";
+ "elm-repl" = dontDistribute super."elm-repl";
+ "elm-server" = dontDistribute super."elm-server";
+ "elm-yesod" = dontDistribute super."elm-yesod";
+ "elocrypt" = dontDistribute super."elocrypt";
+ "emacs-keys" = dontDistribute super."emacs-keys";
+ "email" = dontDistribute super."email";
+ "email-header" = dontDistribute super."email-header";
+ "email-postmark" = dontDistribute super."email-postmark";
+ "email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "enclosed-exceptions" = doDistribute super."enclosed-exceptions_1_0_1";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io" = dontDistribute super."engine-io";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engine-io-wai" = dontDistribute super."engine-io-wai";
+ "engine-io-yesod" = dontDistribute super."engine-io-yesod";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "entropy" = doDistribute super."entropy_0_3_5";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envparse" = dontDistribute super."envparse";
+ "envy" = dontDistribute super."envy";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "eq" = doDistribute super."eq_4_0_3";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "equivalence" = dontDistribute super."equivalence";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0";
+ "errors" = doDistribute super."errors_1_4_7";
+ "ersatz" = doDistribute super."ersatz_0_2_6_1";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "esqueleto" = doDistribute super."esqueleto_2_1_2_1";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "etcd" = dontDistribute super."etcd";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = dontDistribute super."ether";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event" = dontDistribute super."event";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventstore" = dontDistribute super."eventstore";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = dontDistribute super."exact-pi";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exception-transformers" = doDistribute super."exception-transformers_0_3_0_4";
+ "exceptional" = dontDistribute super."exceptional";
+ "exceptions" = doDistribute super."exceptions_0_6_1";
+ "executable-hash" = dontDistribute super."executable-hash";
+ "exhaustive" = dontDistribute super."exhaustive";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "exists" = dontDistribute super."exists";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-cache-map" = dontDistribute super."expiring-cache-map";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-exception" = dontDistribute super."explicit-exception";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "extensible-effects" = dontDistribute super."extensible-effects";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_0_1";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "failable-list" = dontDistribute super."failable-list";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "farmhash" = dontDistribute super."farmhash";
+ "fast-builder" = dontDistribute super."fast-builder";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-logger" = doDistribute super."fast-logger_2_2_3";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fasta" = dontDistribute super."fasta";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay" = doDistribute super."fay_0_21_2_1";
+ "fay-base" = doDistribute super."fay-base_0_19_4_2";
+ "fay-builder" = doDistribute super."fay-builder_0_2_0_3";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-jquery" = doDistribute super."fay-jquery_0_6_0_3";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fb" = doDistribute super."fb_1_0_8";
+ "fb-persistent" = doDistribute super."fb-persistent_0_3_4";
+ "fca" = dontDistribute super."fca";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels" = doDistribute super."fclabels_2_0_2_2";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-notify" = dontDistribute super."fdo-notify";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "feature-flags" = dontDistribute super."feature-flags";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed" = dontDistribute super."feed";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fft" = dontDistribute super."fft";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl" = doDistribute super."fgl_5_5_0_1";
+ "fgl-arbitrary" = dontDistribute super."fgl-arbitrary";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "file-embed" = doDistribute super."file-embed_0_0_8";
+ "file-location" = doDistribute super."file-location_0_4_6";
+ "filecache" = dontDistribute super."filecache";
+ "filediff" = dontDistribute super."filediff";
+ "filelock" = dontDistribute super."filelock";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree" = doDistribute super."fingertree_0_1_0_1";
+ "fingertree-psqueue" = dontDistribute super."fingertree-psqueue";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed" = doDistribute super."fixed_0_2_1";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-list" = doDistribute super."fixed-list_0_1_5";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector" = dontDistribute super."fixed-vector";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flock" = dontDistribute super."flock";
+ "flow" = dontDistribute super."flow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock" = dontDistribute super."flowdock";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fmlist" = dontDistribute super."fmlist";
+ "focus" = doDistribute super."focus_0_1_3";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_0_7";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "force-layout" = doDistribute super."force-layout_0_3_0_9";
+ "fordo" = dontDistribute super."fordo";
+ "forecast-io" = dontDistribute super."forecast-io";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-store" = doDistribute super."foreign-store_0_1";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "formatting" = doDistribute super."formatting_6_0_0";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = doDistribute super."fpco-api_1_2_0_4";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "free" = doDistribute super."free_4_10_0_1";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fsnotify" = doDistribute super."fsnotify_0_1_0_3";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funcmp" = dontDistribute super."funcmp";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-aeson" = doDistribute super."generic-aeson_0_2_0_2";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_6_3";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-trie" = dontDistribute super."generic-trie";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generic-xmlpickler" = dontDistribute super."generic-xmlpickler";
+ "generics-sop" = doDistribute super."generics-sop_0_1_1";
+ "genericserialize" = dontDistribute super."genericserialize";
+ "genetics" = dontDistribute super."genetics";
+ "geni-gui" = dontDistribute super."geni-gui";
+ "geni-util" = dontDistribute super."geni-util";
+ "geniconvert" = dontDistribute super."geniconvert";
+ "genifunctors" = dontDistribute super."genifunctors";
+ "geniplate" = dontDistribute super."geniplate";
+ "geniplate-mirror" = dontDistribute super."geniplate-mirror";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geocalc" = dontDistribute super."geocalc";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "getopt-generics" = dontDistribute super."getopt-generics";
+ "getopt-simple" = dontDistribute super."getopt-simple";
+ "gf" = dontDistribute super."gf";
+ "ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-core" = dontDistribute super."ghc-core";
+ "ghc-core-html" = dontDistribute super."ghc-core-html";
+ "ghc-datasize" = dontDistribute super."ghc-datasize";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events" = dontDistribute super."ghc-events";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-exactprint" = dontDistribute super."ghc-exactprint";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_3";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-parser" = dontDistribute super."ghc-parser";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_3_4";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "gio" = doDistribute super."gio_0_13_0_4";
+ "gipeda" = dontDistribute super."gipeda";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = dontDistribute super."git-annex";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github" = dontDistribute super."github";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-types" = dontDistribute super."github-types";
+ "github-utils" = dontDistribute super."github-utils";
+ "github-webhook-handler" = dontDistribute super."github-webhook-handler";
+ "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib" = dontDistribute super."gitlib";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-libgit2" = dontDistribute super."gitlib-libgit2";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-test" = dontDistribute super."gitlib-test";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitrev" = dontDistribute super."gitrev";
+ "gitson" = dontDistribute super."gitson";
+ "gl" = doDistribute super."gl_0_6_3";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glib" = doDistribute super."glib_0_13_0_7";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnuidn" = dontDistribute super."gnuidn";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "gnutls" = dontDistribute super."gnutls";
+ "goa" = dontDistribute super."goa";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "google-cloud" = dontDistribute super."google-cloud";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "google-translate" = dontDistribute super."google-translate";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_1_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graph-wrapper" = dontDistribute super."graph-wrapper";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphs" = doDistribute super."graphs_0_5_0_1";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = dontDistribute super."graphviz";
+ "gravatar" = doDistribute super."gravatar_0_6";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "grid" = dontDistribute super."grid";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groom" = dontDistribute super."groom";
+ "groundhog" = doDistribute super."groundhog_0_7_0_2";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "groundhog-th" = doDistribute super."groundhog-th_0_7_0";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "growler" = dontDistribute super."growler";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsasl" = dontDistribute super."gsasl";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk" = doDistribute super."gtk_0_13_4";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_3";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3" = dontDistribute super."gtk3";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hOpenPGP" = doDistribute super."hOpenPGP_1_11";
+ "hPDB" = doDistribute super."hPDB_1_2_0_2";
+ "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_1";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-db" = dontDistribute super."hackage-db";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-mirror" = dontDistribute super."hackage-mirror";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackmanager" = dontDistribute super."hackmanager";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-api" = doDistribute super."haddock-api_2_15_0_2";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "haddock-library" = doDistribute super."haddock-library_1_1_1";
+ "haddocset" = dontDistribute super."haddocset";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = dontDistribute super."hakyll";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "half" = doDistribute super."half_0_2_0_1";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hamlet" = dontDistribute super."hamlet";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "hapistrano" = dontDistribute super."hapistrano";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-authenticate" = dontDistribute super."happstack-authenticate";
+ "happstack-clientsession" = dontDistribute super."happstack-clientsession";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hsp" = dontDistribute super."happstack-hsp";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-jmacro" = dontDistribute super."happstack-jmacro";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server" = doDistribute super."happstack-server_7_3_9";
+ "happstack-server-tls" = dontDistribute super."happstack-server-tls";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harp" = dontDistribute super."harp";
+ "harpy" = dontDistribute super."harpy";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable" = doDistribute super."hashable_1_2_3_1";
+ "hashable-extras" = doDistribute super."hashable-extras_0_2_0_1";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashable-time" = dontDistribute super."hashable-time";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = doDistribute super."haskell-names_0_4_1";
+ "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-spacegoo" = dontDistribute super."haskell-spacegoo";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_8";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskintex" = dontDistribute super."haskintex";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_7_2";
+ "hasql-backend" = doDistribute super."hasql-backend_0_4_0";
+ "hasql-postgres" = doDistribute super."hasql-postgres_0_10_2";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl" = dontDistribute super."haxl";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_10_3_1";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeanstalk" = dontDistribute super."hbeanstalk";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize" = doDistribute super."hdaemonize_0_5_0_0";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_0_6";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = dontDistribute super."hdocs";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "headergen" = dontDistribute super."headergen";
+ "heap" = dontDistribute super."heap";
+ "heaps" = doDistribute super."heaps_0_3_1";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis" = dontDistribute super."hedis";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist" = doDistribute super."heist_0_14_1";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "here" = doDistribute super."here_1_2_6";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hex" = dontDistribute super."hex";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat" = dontDistribute super."hexpat";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "hexstring" = dontDistribute super."hexstring";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfoil" = dontDistribute super."hfoil";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfsevents" = dontDistribute super."hfsevents";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgettext" = dontDistribute super."hgettext";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hid" = dontDistribute super."hid";
+ "hidapi" = dontDistribute super."hidapi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering" = dontDistribute super."hierarchical-clustering";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highjson" = dontDistribute super."highjson";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "highlighting-kate" = doDistribute super."highlighting-kate_0_5_11_1";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindent" = dontDistribute super."hindent";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify" = doDistribute super."hinotify_0_3_7";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_2_2";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_4_7";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hledger" = doDistribute super."hledger_0_24";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-interest" = dontDistribute super."hledger-interest";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_24";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = dontDistribute super."hledger-web";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlibsass" = dontDistribute super."hlibsass";
+ "hlint" = doDistribute super."hlint_1_9_16";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix" = doDistribute super."hmatrix_0_16_1_4";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hoauth2" = doDistribute super."hoauth2_0_4_3";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "holy-project" = doDistribute super."holy-project_0_1_1_1";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle" = doDistribute super."hoogle_4_2_38";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = dontDistribute super."hopenpgp-tools";
+ "hopenssl" = dontDistribute super."hopenssl";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass" = doDistribute super."hourglass_0_2_8";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpc-coveralls" = dontDistribute super."hpc-coveralls";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = dontDistribute super."hprotoc";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsass" = dontDistribute super."hsass";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_20_3";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = dontDistribute super."hsebaysdk";
+ "hsemail" = dontDistribute super."hsemail";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsexif" = dontDistribute super."hsexif";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsignal" = dontDistribute super."hsignal";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger" = doDistribute super."hslogger_1_2_8";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hslua" = doDistribute super."hslua_0_3_13";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile" = dontDistribute super."hsndfile";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsndfile-vector" = dontDistribute super."hsndfile-vector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp" = dontDistribute super."hsp";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec" = doDistribute super."hspec_2_1_3";
+ "hspec-attoparsec" = dontDistribute super."hspec-attoparsec";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-contrib" = dontDistribute super."hspec-contrib";
+ "hspec-core" = doDistribute super."hspec-core_2_1_3";
+ "hspec-discover" = doDistribute super."hspec-discover_2_1_3";
+ "hspec-expectations" = doDistribute super."hspec-expectations_0_6_1_1";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-jenkins" = dontDistribute super."hspec-jenkins";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-meta" = doDistribute super."hspec-meta_2_0_0";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-smallcheck" = dontDistribute super."hspec-smallcheck";
+ "hspec-snap" = dontDistribute super."hspec-snap";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0";
+ "hspec-webdriver" = dontDistribute super."hspec-webdriver";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hstatistics" = dontDistribute super."hstatistics";
+ "hstats" = dontDistribute super."hstats";
+ "hstatsd" = dontDistribute super."hstatsd";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-jmacro" = dontDistribute super."hsx-jmacro";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsx2hs" = dontDistribute super."hsx2hs";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-conduit" = doDistribute super."html-conduit_1_1_1_1";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-accept" = dontDistribute super."http-accept";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client" = doDistribute super."http-client_0_4_7_1";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-openssl" = dontDistribute super."http-client-openssl";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-common" = dontDistribute super."http-common";
+ "http-conduit" = doDistribute super."http-conduit_2_1_5";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-date" = doDistribute super."http-date_0_0_4";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-link-header" = dontDistribute super."http-link-header";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-media" = dontDistribute super."http-media";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-streams" = dontDistribute super."http-streams";
+ "http-test" = dontDistribute super."http-test";
+ "http-types" = doDistribute super."http-types_0_8_5";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = dontDistribute super."http2";
+ "httpd-shed" = dontDistribute super."httpd-shed";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = dontDistribute super."human-readable-duration";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = dontDistribute super."hvect";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-css" = dontDistribute super."hxt-css";
+ "hxt-curl" = dontDistribute super."hxt-curl";
+ "hxt-expat" = dontDistribute super."hxt-expat";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-pickle-utils" = doDistribute super."hxt-pickle-utils_0_1_0_2";
+ "hxt-regex-xmlschema" = doDistribute super."hxt-regex-xmlschema_9_2_0_1";
+ "hxt-tagsoup" = dontDistribute super."hxt-tagsoup";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hybrid-vectors" = doDistribute super."hybrid-vectors_0_1_2_1";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperloglog" = dontDistribute super."hyperloglog";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hyphenation" = doDistribute super."hyphenation_0_4_2";
+ "hypher" = dontDistribute super."hypher";
+ "hzk" = dontDistribute super."hzk";
+ "hzulip" = dontDistribute super."hzulip";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "iconv" = dontDistribute super."iconv";
+ "ide-backend" = dontDistribute super."ide-backend";
+ "ide-backend-common" = dontDistribute super."ide-backend-common";
+ "ide-backend-rts" = dontDistribute super."ide-backend-rts";
+ "ide-backend-server" = dontDistribute super."ide-backend-server";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = dontDistribute super."ig";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "ignore" = dontDistribute super."ignore";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell" = dontDistribute super."ihaskell";
+ "ihaskell-aeson" = dontDistribute super."ihaskell-aeson";
+ "ihaskell-basic" = dontDistribute super."ihaskell-basic";
+ "ihaskell-blaze" = dontDistribute super."ihaskell-blaze";
+ "ihaskell-charts" = dontDistribute super."ihaskell-charts";
+ "ihaskell-diagrams" = dontDistribute super."ihaskell-diagrams";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-hatex" = dontDistribute super."ihaskell-hatex";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-juicypixels" = dontDistribute super."ihaskell-juicypixels";
+ "ihaskell-magic" = dontDistribute super."ihaskell-magic";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "include-file" = dontDistribute super."include-file";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflections" = dontDistribute super."inflections";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_0";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c" = dontDistribute super."inline-c";
+ "inline-c-cpp" = dontDistribute super."inline-c-cpp";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-r" = dontDistribute super."inline-r";
+ "inquire" = dontDistribute super."inquire";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integration" = doDistribute super."integration_0_2_0_1";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invariant" = dontDistribute super."invariant";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-region" = dontDistribute super."io-region";
+ "io-storage" = dontDistribute super."io-storage";
+ "io-streams" = dontDistribute super."io-streams";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ip6addr" = dontDistribute super."ip6addr";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iproute" = doDistribute super."iproute_1_3_1";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "ipython-kernel" = dontDistribute super."ipython-kernel";
+ "irc" = dontDistribute super."irc";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = dontDistribute super."irc-client";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-conduit" = dontDistribute super."irc-conduit";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-ctcp" = dontDistribute super."irc-ctcp";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "islink" = dontDistribute super."islink";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso3166-country-codes" = dontDistribute super."iso3166-country-codes";
+ "iso639" = dontDistribute super."iso639";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "iso8601-time" = dontDistribute super."iso8601-time";
+ "isohunt" = dontDistribute super."isohunt";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ix-shapable" = dontDistribute super."ix-shapable";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "ixset-typed" = dontDistribute super."ixset-typed";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jmacro" = dontDistribute super."jmacro";
+ "jmacro-rpc" = dontDistribute super."jmacro-rpc";
+ "jmacro-rpc-happstack" = dontDistribute super."jmacro-rpc-happstack";
+ "jmacro-rpc-snap" = dontDistribute super."jmacro-rpc-snap";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jose-jwt" = dontDistribute super."jose-jwt";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_11_2";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json" = dontDistribute super."json";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-autotype" = doDistribute super."json-autotype_0_2_5_4";
+ "json-b" = dontDistribute super."json-b";
+ "json-builder" = dontDistribute super."json-builder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-schema" = doDistribute super."json-schema_0_7_3_1";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = dontDistribute super."jwt";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kan-extensions" = doDistribute super."kan-extensions_4_2_1";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kansas-comet" = dontDistribute super."kansas-comet";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katt" = dontDistribute super."katt";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "kdt" = doDistribute super."kdt_0_2_2";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "keter" = doDistribute super."keter_1_3_8";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = dontDistribute super."keycode";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keys" = doDistribute super."keys_3_10_1";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans" = dontDistribute super."kmeans";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knob" = dontDistribute super."knob";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "koofr-client" = dontDistribute super."koofr-client";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "kraken" = dontDistribute super."kraken";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure" = doDistribute super."kure_2_16_6";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript" = doDistribute super."language-ecmascript_0_16_2";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-glsl" = doDistribute super."language-glsl_0_1_1";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_13_3";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-lua2" = dontDistribute super."language-lua2";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-nix" = dontDistribute super."language-nix";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = dontDistribute super."language-thrift";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "largeword" = dontDistribute super."largeword";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "lattices" = dontDistribute super."lattices";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-csv" = doDistribute super."lazy-csv_0_5";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lca" = doDistribute super."lca_0_2_4";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens" = doDistribute super."lens_4_6_0_1";
+ "lens-action" = dontDistribute super."lens-action";
+ "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-family" = dontDistribute super."lens-family";
+ "lens-family-core" = dontDistribute super."lens-family-core";
+ "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-regex" = dontDistribute super."lens-regex";
+ "lens-simple" = dontDistribute super."lens-simple";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lentil" = dontDistribute super."lentil";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell" = dontDistribute super."leveldb-haskell";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lexer-applicative" = dontDistribute super."lexer-applicative";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhs2tex" = doDistribute super."lhs2tex_1_18_1";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgit" = doDistribute super."libgit_0_3_0";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "librato" = dontDistribute super."librato";
+ "libravatar" = dontDistribute super."libravatar";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libsystemd-journal" = dontDistribute super."libsystemd-journal";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxml-sax" = dontDistribute super."libxml-sax";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lifted-async" = doDistribute super."lifted-async_0_2_0_2";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear" = doDistribute super."linear_1_15_5";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-file-extents" = dontDistribute super."linux-file-extents";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-namespaces" = dontDistribute super."linux-namespaces";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-fusion-probe" = dontDistribute super."list-fusion-probe";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_3";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "load-env" = dontDistribute super."load-env";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-domain" = doDistribute super."log-domain_0_9_3";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = doDistribute super."logfloat_0_12_1";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-facade" = dontDistribute super."logging-facade";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop" = doDistribute super."loop_0_2_0";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lrucache" = dontDistribute super."lrucache";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltext" = dontDistribute super."ltext";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid" = doDistribute super."lucid_2_5";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucid-svg" = dontDistribute super."lucid-svg";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luka" = dontDistribute super."luka";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-conduit" = doDistribute super."lzma-conduit_1_1_3";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines" = doDistribute super."machines_0_4_1";
+ "machines-directory" = dontDistribute super."machines-directory";
+ "machines-io" = dontDistribute super."machines-io";
+ "machines-process" = dontDistribute super."machines-process";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magic" = dontDistribute super."magic";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = dontDistribute super."managed";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandrill" = doDistribute super."mandrill_0_1_1_0";
+ "mandulia" = dontDistribute super."mandulia";
+ "mangopay" = dontDistribute super."mangopay";
+ "manifolds" = dontDistribute super."manifolds";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown" = doDistribute super."markdown_0_1_13_1";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup" = dontDistribute super."markup";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrices" = dontDistribute super."matrices";
+ "matrix" = doDistribute super."matrix_0_3_4_1";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maximal-cliques" = dontDistribute super."maximal-cliques";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox" = dontDistribute super."mbox";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memcached-binary" = dontDistribute super."memcached-binary";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memoize" = dontDistribute super."memoize";
+ "memory" = dontDistribute super."memory";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messagepack" = doDistribute super."messagepack_0_3_0";
+ "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metrics" = dontDistribute super."metrics";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-parser" = dontDistribute super."microformats2-parser";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = dontDistribute super."microlens";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = dontDistribute super."microlens-ghc";
+ "microlens-mtl" = dontDistribute super."microlens-mtl";
+ "microlens-platform" = dontDistribute super."microlens-platform";
+ "microlens-th" = dontDistribute super."microlens-th";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-mail" = doDistribute super."mime-mail_0_4_7";
+ "mime-string" = dontDistribute super."mime-string";
+ "mime-types" = doDistribute super."mime-types_0_1_0_5";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "misfortune" = dontDistribute super."misfortune";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "moan" = dontDistribute super."moan";
+ "mockery" = dontDistribute super."mockery";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "moesocks" = dontDistribute super."moesocks";
+ "mohws" = dontDistribute super."mohws";
+ "mole" = dontDistribute super."mole";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-control" = doDistribute super."monad-control_0_3_3_1";
+ "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-extras" = doDistribute super."monad-extras_0_5_9";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_6_0_2";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-logger" = doDistribute super."monad-logger_0_3_12";
+ "monad-logger-json" = dontDistribute super."monad-logger-json";
+ "monad-logger-syslog" = dontDistribute super."monad-logger-syslog";
+ "monad-loops" = doDistribute super."monad-loops_0_4_2_1";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel" = doDistribute super."monad-parallel_0_7_1_3";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = dontDistribute super."monad-peel";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-skeleton" = dontDistribute super."monad-skeleton";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-stm" = dontDistribute super."monad-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = dontDistribute super."monad-time";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = dontDistribute super."monad-unlift";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib" = dontDistribute super."monadLib";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc" = dontDistribute super."monadloc";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mongoDB" = doDistribute super."mongoDB_2_0_3";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
+ "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-subclasses" = doDistribute super."monoid-subclasses_0_3_6_2";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidal-containers" = dontDistribute super."monoidal-containers";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = dontDistribute super."morte";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
+ "mstate" = dontDistribute super."mstate";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl" = doDistribute super."mtl_2_1_3_1";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-compat" = dontDistribute super."mtl-compat";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-prelude" = doDistribute super."mtl-prelude_1_0_3";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiarg" = dontDistribute super."multiarg";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate" = dontDistribute super."multiplate";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset" = dontDistribute super."multiset";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur-hash" = dontDistribute super."murmur-hash";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache" = dontDistribute super."mustache";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-containers" = dontDistribute super."mutable-containers";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-random" = doDistribute super."mwc-random_0_13_3_0";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql" = doDistribute super."mysql_0_1_1_7";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple" = doDistribute super."mysql-simple_0_2_2_4";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-check" = dontDistribute super."nagios-check";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanospec" = doDistribute super."nanospec_0_2_0";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "nationstates" = dontDistribute super."nationstates";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-sort" = dontDistribute super."natural-sort";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "ndjson-conduit" = dontDistribute super."ndjson-conduit";
+ "neat" = dontDistribute super."neat";
+ "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle" = doDistribute super."nettle_0_1_0";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network" = doDistribute super."network_2_6_0_2";
+ "network-address" = dontDistribute super."network-address";
+ "network-anonymous-i2p" = dontDistribute super."network-anonymous-i2p";
+ "network-anonymous-tor" = dontDistribute super."network-anonymous-tor";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-attoparsec" = dontDistribute super."network-attoparsec";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-carbon" = dontDistribute super."network-carbon";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_1_0_2";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-house" = dontDistribute super."network-house";
+ "network-info" = doDistribute super."network-info_0_2_0_5";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_0_11";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-protocol-xmpp" = dontDistribute super."network-protocol-xmpp";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple" = doDistribute super."network-simple_0_4_0_3";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport" = doDistribute super."network-transport_0_4_1_0";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1";
+ "network-transport-zeromq" = dontDistribute super."network-transport-zeromq";
+ "network-uri" = doDistribute super."network-uri_2_6_0_1";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-generics" = dontDistribute super."newtype-generics";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicify-lib" = dontDistribute super."nicify-lib";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nitro" = dontDistribute super."nitro";
+ "nix-paths" = dontDistribute super."nix-paths";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nonce" = dontDistribute super."nonce";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nsis" = doDistribute super."nsis_0_2_4";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "number" = dontDistribute super."number";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype-dk" = dontDistribute super."numtype-dk";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = dontDistribute super."objective";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ofx" = dontDistribute super."ofx";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "oo-prototypes" = dontDistribute super."oo-prototypes";
+ "opaleye" = doDistribute super."opaleye_0_3_1";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "open-browser" = dontDistribute super."open-browser";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "openssl-streams" = dontDistribute super."openssl-streams";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-class" = dontDistribute super."operational-class";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = dontDistribute super."opml-conduit";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "optional" = dontDistribute super."optional";
+ "optional-args" = dontDistribute super."optional-args";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-simple" = dontDistribute super."optparse-simple";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "osm-download" = dontDistribute super."osm-download";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pager" = dontDistribute super."pager";
+ "pagerduty" = dontDistribute super."pagerduty";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palette" = dontDistribute super."palette";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_13_2";
+ "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_6";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "pango" = doDistribute super."pango_0_13_0_5";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_8";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parseerror-eq" = dontDistribute super."parseerror-eq";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsers" = doDistribute super."parsers_0_12_1_1";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partial" = dontDistribute super."partial";
+ "partial-handler" = doDistribute super."partial-handler_0_1_0";
+ "partial-isomorphisms" = dontDistribute super."partial-isomorphisms";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path" = dontDistribute super."path";
+ "path-pieces" = doDistribute super."path-pieces_0_1_5";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "pattern-arrows" = dontDistribute super."pattern-arrows";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap" = dontDistribute super."pcap";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-heavy" = dontDistribute super."pcre-heavy";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pcre-utils" = dontDistribute super."pcre-utils";
+ "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content";
+ "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core";
+ "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfinfo" = doDistribute super."pdfinfo_1_5_1";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistent" = doDistribute super."persistent_2_1_1_4";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1";
+ "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_2_2";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-refs" = dontDistribute super."persistent-refs";
+ "persistent-sqlite" = doDistribute super."persistent-sqlite_2_1_1_2";
+ "persistent-template" = doDistribute super."persistent-template_2_1_0_1";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgp-wordlist" = dontDistribute super."pgp-wordlist";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phash" = dontDistribute super."phash";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picoparsec" = dontDistribute super."picoparsec";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes" = doDistribute super."pipes_4_1_4";
+ "pipes-aeson" = dontDistribute super."pipes-aeson";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec" = dontDistribute super."pipes-attoparsec";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bgzf" = dontDistribute super."pipes-bgzf";
+ "pipes-binary" = dontDistribute super."pipes-binary";
+ "pipes-bytestring" = dontDistribute super."pipes-bytestring";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-cliff" = dontDistribute super."pipes-cliff";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-csv" = dontDistribute super."pipes-csv";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-extras" = dontDistribute super."pipes-extras";
+ "pipes-fastx" = dontDistribute super."pipes-fastx";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-group" = dontDistribute super."pipes-group";
+ "pipes-http" = dontDistribute super."pipes-http";
+ "pipes-illumina" = dontDistribute super."pipes-illumina";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-mongodb" = dontDistribute super."pipes-mongodb";
+ "pipes-network" = dontDistribute super."pipes-network";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-parse" = doDistribute super."pipes-parse_3_0_2";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-safe" = dontDistribute super."pipes-safe";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-text" = dontDistribute super."pipes-text";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-wai" = dontDistribute super."pipes-wai";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plivo" = dontDistribute super."plivo";
+ "plot" = dontDistribute super."plot";
+ "plot-gtk" = dontDistribute super."plot-gtk";
+ "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
+ "plot-gtk3" = dontDistribute super."plot-gtk3";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointed" = doDistribute super."pointed_4_2";
+ "pointedlist" = dontDistribute super."pointedlist";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-arity" = dontDistribute super."poly-arity";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_10";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-realtime" = dontDistribute super."posix-realtime";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "post-mess-age" = dontDistribute super."post-mess-age";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_5_1";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-libpq" = doDistribute super."postgresql-libpq_0_9_0_2";
+ "postgresql-orm" = dontDistribute super."postgresql-orm";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-schema" = dontDistribute super."postgresql-schema";
+ "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-simple-url" = dontDistribute super."postgresql-simple-url";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_2_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "pred-trie" = dontDistribute super."pred-trie";
+ "predicates" = dontDistribute super."predicates";
+ "prednote" = dontDistribute super."prednote";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-extras" = doDistribute super."prelude-extras_0_4";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "presburger" = dontDistribute super."presburger";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-hex" = dontDistribute super."pretty-hex";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-show" = doDistribute super."pretty-show_1_6_8";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive" = doDistribute super."primitive_0_5_4_0";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-extras" = doDistribute super."process-extras_0_2_0";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "profunctors" = doDistribute super."profunctors_4_3_2";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "project-template" = doDistribute super."project-template_0_1_4_2";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prometheus-client" = dontDistribute super."prometheus-client";
+ "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "prompt" = dontDistribute super."prompt";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf" = dontDistribute super."protobuf";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protocol-buffers" = dontDistribute super."protocol-buffers";
+ "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = dontDistribute super."psc-ide";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psqueues" = dontDistribute super."psqueues";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = dontDistribute super."publicsuffix";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-cdb" = dontDistribute super."pure-cdb";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = dontDistribute super."purescript";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
+ "quantfin" = dontDistribute super."quantfin";
+ "quantities" = dontDistribute super."quantities";
+ "quantum-arrow" = dontDistribute super."quantum-arrow";
+ "qudb" = dontDistribute super."qudb";
+ "quenya-verb" = dontDistribute super."quenya-verb";
+ "querystring-pickle" = dontDistribute super."querystring-pickle";
+ "questioner" = dontDistribute super."questioner";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
+ "quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
+ "quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-text" = dontDistribute super."quickcheck-text";
+ "quickcheck-unicode" = doDistribute super."quickcheck-unicode_1_0_0_0";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = doDistribute super."quickpull_0_4_0_0";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_20_0_4";
+ "rainbox" = dontDistribute super."rainbox";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random" = doDistribute super."random_1_0_1_1";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range" = dontDistribute super."range";
+ "range-set-list" = dontDistribute super."range-set-list";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = dontDistribute super."rasterific-svg";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "readable" = dontDistribute super."readable";
+ "readline" = dontDistribute super."readline";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursion-schemes" = dontDistribute super."recursion-schemes";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = dontDistribute super."redis-io";
+ "redis-resp" = dontDistribute super."redis-resp";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reducers" = doDistribute super."reducers_3_10_3";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = dontDistribute super."ref-fd";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refact" = dontDistribute super."refact";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection" = doDistribute super."reflection_1_5_1_1";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reform" = dontDistribute super."reform";
+ "reform-blaze" = dontDistribute super."reform-blaze";
+ "reform-hamlet" = dontDistribute super."reform-hamlet";
+ "reform-happstack" = dontDistribute super."reform-happstack";
+ "reform-hsp" = dontDistribute super."reform-hsp";
+ "regex-applicative" = doDistribute super."regex-applicative_0_3_1";
+ "regex-applicative-text" = dontDistribute super."regex-applicative-text";
+ "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pcre" = dontDistribute super."regex-pcre";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_0";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "regress" = dontDistribute super."regress";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "reinterpret-cast" = dontDistribute super."reinterpret-cast";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa" = doDistribute super."repa_3_3_1_2";
+ "repa-algorithms" = doDistribute super."repa-algorithms_3_3_1_2";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-devil" = doDistribute super."repa-devil_0_3_2_2";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-io" = doDistribute super."repa-io_3_3_1_2";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "request-monad" = dontDistribute super."request-monad";
+ "reroute" = doDistribute super."reroute_0_2_2_1";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "resourcet" = doDistribute super."resourcet_1_1_3_3";
+ "respond" = dontDistribute super."respond";
+ "rest-client" = doDistribute super."rest-client_0_4_0_5";
+ "rest-core" = doDistribute super."rest-core_0_33_1_2";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_16_1_8";
+ "rest-happstack" = doDistribute super."rest-happstack_0_2_10_4";
+ "rest-snap" = doDistribute super."rest-snap_0_1_17_14";
+ "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_3";
+ "rest-types" = doDistribute super."rest-types_1_11_1_1";
+ "rest-wai" = doDistribute super."rest-wai_0_1_0_4";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb" = dontDistribute super."rethinkdb";
+ "rethinkdb-client-driver" = dontDistribute super."rethinkdb-client-driver";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retry" = dontDistribute super."retry";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = dontDistribute super."riak";
+ "riak-protobuf" = dontDistribute super."riak-protobuf";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trees" = dontDistribute super."rose-trees";
+ "rosezipper" = dontDistribute super."rosezipper";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s3-signer" = dontDistribute super."s3-signer";
+ "safe" = doDistribute super."safe_0_3_8";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safecopy" = doDistribute super."safecopy_0_8_3";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandi" = dontDistribute super."sandi";
+ "sandlib" = dontDistribute super."sandlib";
+ "sandman" = dontDistribute super."sandman";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbv" = dontDistribute super."sbv";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = dontDistribute super."scalpel";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scientific" = doDistribute super."scientific_0_3_3_7";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_9_0";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scroll" = dontDistribute super."scroll";
+ "scrypt" = dontDistribute super."scrypt";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2" = dontDistribute super."sdl2";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = dontDistribute super."second-transfer";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "securemem" = doDistribute super."securemem_0_1_7";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoid-extras" = doDistribute super."semigroupoid-extras_4_0";
+ "semigroupoids" = doDistribute super."semigroupoids_4_2";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups" = doDistribute super."semigroups_0_16_1";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver" = dontDistribute super."semver";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqalign" = dontDistribute super."seqalign";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serf" = dontDistribute super."serf";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "servant" = dontDistribute super."servant";
+ "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels";
+ "servant-blaze" = dontDistribute super."servant-blaze";
+ "servant-client" = dontDistribute super."servant-client";
+ "servant-docs" = dontDistribute super."servant-docs";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-jquery" = dontDistribute super."servant-jquery";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = dontDistribute super."servant-server";
+ "serversession" = dontDistribute super."serversession";
+ "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state";
+ "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent";
+ "serversession-backend-redis" = dontDistribute super."serversession-backend-redis";
+ "serversession-frontend-snap" = dontDistribute super."serversession-frontend-snap";
+ "serversession-frontend-wai" = dontDistribute super."serversession-frontend-wai";
+ "serversession-frontend-yesod" = dontDistribute super."serversession-frontend-yesod";
+ "servius" = dontDistribute super."servius";
+ "ses-html" = dontDistribute super."ses-html";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = dontDistribute super."set-extra";
+ "set-monad" = dontDistribute super."set-monad";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setlocale" = dontDistribute super."setlocale";
+ "setops" = dontDistribute super."setops";
+ "sets" = dontDistribute super."sets";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake" = doDistribute super."shake_0_14_3";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_6_4";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare" = doDistribute super."shakespeare_2_0_4";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-conduit" = doDistribute super."shell-conduit_4_5_1";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelltestrunner" = dontDistribute super."shelltestrunner";
+ "shelly" = doDistribute super."shelly_1_5_7";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shortcut-links" = dontDistribute super."shortcut-links";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = dontDistribute super."should-not-typecheck";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signal" = dontDistribute super."signal";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "silently" = doDistribute super."silently_1_2_4_1";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple" = dontDistribute super."simple";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_18";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-session" = dontDistribute super."simple-session";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-smt" = dontDistribute super."simple-smt";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-templates" = dontDistribute super."simple-templates";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "singletons" = doDistribute super."singletons_1_0";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skein" = doDistribute super."skein_1_0_9_2";
+ "skeleton" = dontDistribute super."skeleton";
+ "skeletons" = dontDistribute super."skeletons";
+ "skell" = dontDistribute super."skell";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "slave-thread" = doDistribute super."slave-thread_0_1_5";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcaps" = dontDistribute super."smallcaps";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smoothie" = dontDistribute super."smoothie";
+ "smsaero" = dontDistribute super."smsaero";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail" = dontDistribute super."smtp-mail";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap" = doDistribute super."snap_0_13_3_2";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-core" = doDistribute super."snap-core_0_9_6_4";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-server" = doDistribute super."snap-server_0_9_4_6";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snmp" = dontDistribute super."snmp";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowflake" = dontDistribute super."snowflake";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "soap" = dontDistribute super."soap";
+ "soap-openssl" = dontDistribute super."soap-openssl";
+ "soap-tls" = dontDistribute super."soap-tls";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = dontDistribute super."socket";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-io" = dontDistribute super."socket-io";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "soegtk" = dontDistribute super."soegtk";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = dontDistribute super."sorted-list";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spdx" = dontDistribute super."spdx";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation" = doDistribute super."speculation_1_5_0_1";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "splice" = dontDistribute super."splice";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple" = doDistribute super."sqlite-simple_0_4_8_0";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srcloc" = dontDistribute super."srcloc";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = dontDistribute super."stack";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stackage" = doDistribute super."stackage_0_3_1";
+ "stackage-build-plan" = dontDistribute super."stackage-build-plan";
+ "stackage-cabal" = dontDistribute super."stackage-cabal";
+ "stackage-cli" = dontDistribute super."stackage-cli";
+ "stackage-curator" = dontDistribute super."stackage-curator";
+ "stackage-install" = dontDistribute super."stackage-install";
+ "stackage-metadata" = dontDistribute super."stackage-metadata";
+ "stackage-sandbox" = dontDistribute super."stackage-sandbox";
+ "stackage-setup" = dontDistribute super."stackage-setup";
+ "stackage-types" = dontDistribute super."stackage-types";
+ "stackage-update" = dontDistribute super."stackage-update";
+ "stackage-upload" = dontDistribute super."stackage-upload";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-plus" = dontDistribute super."state-plus";
+ "state-record" = dontDistribute super."state-record";
+ "stateWriter" = dontDistribute super."stateWriter";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statestack" = doDistribute super."statestack_0_2_0_3";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-canvas" = dontDistribute super."static-canvas";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics" = doDistribute super."statistics_0_13_2_1";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chans" = doDistribute super."stm-chans_3_0_0_2";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_5_4";
+ "stm-containers" = doDistribute super."stm-containers_0_2_8";
+ "stm-delay" = dontDistribute super."stm-delay";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "str" = dontDistribute super."str";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream-fusio